cpplint issues in vp9_lookahead.c

Change-Id: I2a98995f0df77d99dc47bda5e41886f014d8843f
This commit is contained in:
Jim Bankoski 2013-10-04 14:24:19 -07:00
parent c6960b6086
commit 9c2b3744c9

View File

@ -10,7 +10,7 @@
#include <assert.h>
#include <stdlib.h>
#include "vpx_config.h"
#include "./vpx_config.h"
#include "vp9/common/vp9_common.h"
#include "vp9/encoder/vp9_lookahead.h"
#include "vp9/common/vp9_extend.h"
@ -77,7 +77,7 @@ struct lookahead_ctx * vp9_lookahead_init(unsigned int width,
goto bail;
}
return ctx;
bail:
bail:
vp9_lookahead_destroy(ctx);
return NULL;
}