summaryrefslogtreecommitdiff
path: root/libavcodec/sgienc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-10-01 09:13:21 +0000
committerDiego Biurrun <diego@biurrun.de>2009-10-01 09:13:21 +0000
commit081c14a3180f90acebba4e50e564db7bfd86cd88 (patch)
treef438d10ae60e6eef7f246c136ff2da316e335d2b /libavcodec/sgienc.c
parent37a4269d70c3695935167ba119f1883d3d1abfe1 (diff)
Use "!exp" instead of "exp == NULL" in if condition.
Originally committed as revision 20116 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sgienc.c')
-rw-r--r--libavcodec/sgienc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sgienc.c b/libavcodec/sgienc.c
index 787610abda..d37beff109 100644
--- a/libavcodec/sgienc.c
+++ b/libavcodec/sgienc.c
@@ -117,7 +117,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf,
buf += tablesize;
/* Make an intermediate consecutive buffer. */
- if ((encode_buf = av_malloc(width)) == NULL)
+ if (!(encode_buf = av_malloc(width)))
return -1;
for (z = 0; z < depth; z++) {