Remove test against NULL before freeing memory

Change-Id: I6ce6395b74019345c8b7242d874761f981ad53af
This commit is contained in:
Adrian Grange 2014-04-23 14:02:27 -07:00 коммит произвёл Gerrit Code Review
Родитель 1aa2d1a444
Коммит b933205a02
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -183,8 +183,7 @@ int vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
ybf->buffer_alloc = (uint8_t *)yv12_align_addr(fb->data, 32);
} else if (frame_size > ybf->buffer_alloc_sz) {
// Allocation to hold larger frame, or first allocation.
if (ybf->buffer_alloc)
vpx_free(ybf->buffer_alloc);
vpx_free(ybf->buffer_alloc);
ybf->buffer_alloc = (uint8_t *)vpx_memalign(32, frame_size);
if (!ybf->buffer_alloc)
return -1;