[FFmpeg-devel] Patch: avoid "void * " in pointer calculate
Rich Felker
dalias
Wed Feb 13 19:46:03 CET 2008
On Wed, Feb 13, 2008 at 09:29:46PM +0800, mvplayer wrote:
> /* let's disallow possible ambiguous cases */
> @@ -105,9 +106,9 @@
> //FIXME this isn't aligned correctly, though it probably isn't needed
> if(!ptr) return av_malloc(size);
> diff= ((char*)ptr)[-1];
> - return realloc(ptr - diff, size + diff) + diff;
> + return (char*)realloc(ptr - diff, size + diff) + diff;
This is absolute nonsense. C is not C++.
Rich
More information about the ffmpeg-devel
mailing list