mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Add a newline in error message in CHECKED_ALLOC(Z).
Originally committed as revision 19758 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
315fa33f29
commit
5ce6934e0a
@ -253,7 +253,7 @@ if ((y) < (x)) {\
|
||||
{\
|
||||
p = av_malloc(size);\
|
||||
if (p == NULL && (size) != 0) {\
|
||||
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
|
||||
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.\n");\
|
||||
goto fail;\
|
||||
}\
|
||||
}
|
||||
@ -262,7 +262,7 @@ if ((y) < (x)) {\
|
||||
{\
|
||||
p = av_mallocz(size);\
|
||||
if (p == NULL && (size) != 0) {\
|
||||
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
|
||||
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.\n");\
|
||||
goto fail;\
|
||||
}\
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user