1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

an alloc func failing should give ENOMEM anyway.

Originally committed as revision 7737 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
François Revol 2007-01-28 09:07:49 +00:00
parent 8f42f5238e
commit 66d49636c7

View File

@ -57,7 +57,7 @@ int frame_hook_add(int argc, char *argv[])
fhe = av_mallocz(sizeof(*fhe));
if (!fhe) {
return errno;
return -ENOMEM;
}
fhe->Configure = dlsym(loaded, "Configure");