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
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue