pictureviewer.cpp fix possible memleak

Origin commit data
------------------
Commit: 93f3007be1
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2016-02-16 (Tue, 16 Feb 2016)
This commit is contained in:
Jacek Jendrzej
2016-02-16 12:59:43 +01:00
parent ac7d8d670d
commit dc832e6eea

View File

@@ -446,6 +446,7 @@ void CPictureViewer::showBusy (int sx, int sy, int width, char r, char g, char b
m_busy_buffer = (unsigned char *) malloc (width * width * cpp);
if (m_busy_buffer == NULL) {
dprintf(DEBUG_NORMAL, "[CPictureViewer] [%s - %d] Error: malloc\n", __func__, __LINE__);
cs_free_uncached (fb_buffer);
return;
}
busy_buffer_wrk = m_busy_buffer;