Fixed memory leak (release AVI stream).

This commit is contained in:
Michael Günnewig 2002-10-18 00:22:24 +00:00 committed by Alexandre Julliard
parent acbb639240
commit 9af06a4424

View file

@ -147,10 +147,10 @@ HRESULT (WINAPI *fnAVIStreamInfo)(PAVISTREAM iface,AVISTREAMINFO *afi,LONG size)
type[4]='\0';memcpy(type,&(asi.fccType),4); type[4]='\0';memcpy(type,&(asi.fccType),4);
fprintf(stderr,"Unhandled streamtype %s\n",type); fprintf(stderr,"Unhandled streamtype %s\n",type);
fnAVIStreamRelease(ast);
break; break;
} }
} }
fnAVIStreamRelease(ast);
} }
fnAVIFileRelease(avif); fnAVIFileRelease(avif);
fnAVIFileExit(); fnAVIFileExit();