Commit 216088ab authored by mmu_man's avatar mmu_man

an alloc func failing should give ENOMEM anyway.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7737 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f90ded0b
...@@ -57,7 +57,7 @@ int frame_hook_add(int argc, char *argv[]) ...@@ -57,7 +57,7 @@ int frame_hook_add(int argc, char *argv[])
fhe = av_mallocz(sizeof(*fhe)); fhe = av_mallocz(sizeof(*fhe));
if (!fhe) { if (!fhe) {
return errno; return -ENOMEM;
} }
fhe->Configure = dlsym(loaded, "Configure"); fhe->Configure = dlsym(loaded, "Configure");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment