Skip to content

Commit 205cfb8

Browse files
committedApr 11, 2022
8284093: Memory leak: X11SD_DisposeXImage should also free obdata
Reviewed-by: prr, andrew
1 parent f4edb59 commit 205cfb8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/java.desktop/unix/native/common/java2d/x11/X11SurfaceData.c

+1
Original file line numberDiff line numberDiff line change
@@ -1298,6 +1298,7 @@ void X11SD_DisposeXImage(XImage * image) {
12981298
#ifdef MITSHM
12991299
if (image->obdata != NULL) {
13001300
X11SD_DropSharedSegment((XShmSegmentInfo*)image->obdata);
1301+
free(image->obdata);
13011302
image->obdata = NULL;
13021303
}
13031304
#endif /* MITSHM */

0 commit comments

Comments
 (0)
Please sign in to comment.