[FFmpeg-cvslog] r11681 - trunk/libavformat/asf.c

Diego Biurrun diego
Thu Jan 31 09:16:03 CET 2008


On Thu, Jan 31, 2008 at 01:22:25AM +0100, bcoudurier wrote:
> 
> Log:
> typo, also fix warning: asf.c:90: warning: passing argument 2 of 'get_buffer' from incompatible pointer type
> 
> --- trunk/libavformat/asf.c	(original)
> +++ trunk/libavformat/asf.c	Thu Jan 31 01:22:25 2008
> @@ -87,7 +87,7 @@ static void print_guid(const GUID *g)
>  static void get_guid(ByteIOContext *s, GUID *g)
>  {
>      assert(sizeof(*g) == 16);
> -    get_buffer(s, g, sizeof(*g));
> +    get_buffer(s, *g, sizeof(*g));
>  }

Seems like we caught a real bug here...

Diego




More information about the ffmpeg-cvslog mailing list