提交 12626b54 编写于 作者: S serb

8040113: File not initialized in src/share/native/sun/awt/giflib/dgif_lib.c

Reviewed-by: pchelko, prr
上级 e0883b9e
......@@ -195,6 +195,11 @@ DGifOpen(void *userData,
GifFileType *GifFile;
GifFilePrivateType *Private;
if (!readFunc) {
_GifError = D_GIF_ERR_READ_FAILED;
return NULL;
}
GifFile = (GifFileType *)malloc(sizeof(GifFileType));
if (GifFile == NULL) {
_GifError = D_GIF_ERR_NOT_ENOUGH_MEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册