Re: dlls/avifil32: many implemented functions
"Michael GЭnnewig" <MichaelGuennewig(a)gmx.de> wrote:
This patch is a replacement of the one from
Fri Oct 11 2002 - 16:49:14 CDT ... + static WCHAR streamTypeFmt[] = {'%','4','.','4','h','s'}; ... + wsprintfW(szType, streamTypeFmt, (char*)&streamHdr.fccType);
1. streamTypeFmt is not NULL terminated. 2. If you don't mind, please add a 'const' modifier. Thanks. -- Dmitry.
"Dmitry Timoshkov" <dmitry(a)baikal.ru> writes:
"Michael GЭnnewig" <MichaelGuennewig(a)gmx.de> wrote: ...
+ static WCHAR streamTypeFmt[] = {'%','4','.','4','h','s'}; ... + wsprintfW(szType, streamTypeFmt, (char*)&streamHdr.fccType);
1. streamTypeFmt is not NULL terminated. 2. If you don't mind, please add a 'const' modifier.
Oops. Thanks. Here is the little patch for fixing these issues. Michael Günnewig
participants (2)
-
Dmitry Timoshkov -
MichaelGuennewig@gmx.de