From 9af06a442467ce20be55ed59a3f3259431ee80c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20G=C3=BCnnewig?= Date: Fri, 18 Oct 2002 00:22:24 +0000 Subject: [PATCH] Fixed memory leak (release AVI stream). --- programs/avitools/aviinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/avitools/aviinfo.c b/programs/avitools/aviinfo.c index fca40ac9ffc..2208bef8ccd 100644 --- a/programs/avitools/aviinfo.c +++ b/programs/avitools/aviinfo.c @@ -147,10 +147,10 @@ HRESULT (WINAPI *fnAVIStreamInfo)(PAVISTREAM iface,AVISTREAMINFO *afi,LONG size) type[4]='\0';memcpy(type,&(asi.fccType),4); fprintf(stderr,"Unhandled streamtype %s\n",type); - fnAVIStreamRelease(ast); break; } } + fnAVIStreamRelease(ast); } fnAVIFileRelease(avif); fnAVIFileExit();