-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from dloebl/fix-earlyclose
Fix potential memory leak when closing a GIF stream without frames
- Loading branch information
Showing
3 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#include <stdlib.h> | ||
#include <stdint.h> | ||
#include <string.h> | ||
#include <stdio.h> | ||
|
||
#include "cgif.h" | ||
|
||
#define WIDTH 100 | ||
#define HEIGHT 100 | ||
|
||
static int pWriteFn(void* pContext, const uint8_t* pData, const size_t numBytes) { | ||
(void)pContext; | ||
(void)pData; | ||
(void)numBytes; | ||
// just ignore GIF data | ||
return 0; | ||
} | ||
|
||
int main(void) { | ||
CGIF* pGIF; | ||
CGIF_Config gConfig; | ||
CGIF_FrameConfig fConfig; | ||
uint8_t* pImageData; | ||
uint8_t aPalette[] = { | ||
0x00, 0x00, 0x00, // black | ||
0xFF, 0xFF, 0xFF, // white | ||
}; | ||
cgif_result r; | ||
|
||
memset(&gConfig, 0, sizeof(CGIF_Config)); | ||
memset(&fConfig, 0, sizeof(CGIF_FrameConfig)); | ||
gConfig.width = WIDTH; | ||
gConfig.height = HEIGHT; | ||
gConfig.pGlobalPalette = aPalette; | ||
gConfig.numGlobalPaletteEntries = 2; | ||
gConfig.pWriteFn = pWriteFn; | ||
gConfig.pContext = NULL; | ||
// | ||
// create new GIF | ||
pGIF = cgif_newgif(&gConfig); | ||
if(pGIF == NULL) { | ||
fputs("failed to create new GIF via cgif_newgif()\n", stderr); | ||
return 1; | ||
} | ||
// | ||
// close GIF without adding frames before | ||
r = cgif_close(pGIF); // free allocated space at the end of the session | ||
|
||
// check for correct error | ||
if(r != CGIF_OK) { | ||
return 0; | ||
} | ||
fputs("CGIF_ERROR expected as result code\n", stderr); | ||
return 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters