Merge "cpplint issues in vp9_lookahead.c"

This commit is contained in:
Jim Bankoski 2013-10-05 16:46:11 -07:00 committed by Gerrit Code Review
commit 4410bbbf88

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;
}