Those DeleteObject(hBitmap*) can not be called. They are stored in a
cache inside the IupImage, they will be released later when the image is
destroyed.
Best,
Scuri
2018-01-24 22:30 GMT-02:00 Ranier VF <[email protected]>:
> Hi,
> Issue found by Coverity Scan.
> CID 259189 (#1-2 of 2): Resource leak (RESOURCE_LEAK)
>
> --- a\src\win\iupwin_menu.c Mon Dec 11 14:52:42 2017
> +++ b\src\win\iupwin_menu.c Wed Jan 24 22:26:33 2018
> @@ -431,9 +431,13 @@
> hBitmapChecked = hBitmapUnchecked;
>
> SetMenuItemBitmaps((HMENU)ih->handle, (UINT)ih->serial, MF_BYCOMMAND,
> hBitmapUnchecked, hBitmapChecked);
> -
> winMenuUpdateBar(ih);
>
> + if (impress)
> + {
> + DeleteObject(hBitmapChecked);
> + }
> +
> return 1;
> }
>
> @@ -450,8 +454,13 @@
> hBitmapChecked = hBitmapUnchecked;
>
> SetMenuItemBitmaps((HMENU)ih->handle, (UINT)ih->serial, MF_BYCOMMAND,
> hBitmapUnchecked, hBitmapChecked);
> -
> winMenuUpdateBar(ih);
> +
> + if (value)
> + {
> + DeleteObject(hBitmapChecked);
> + }
> + DeleteObject(hBitmapunChecked);
>
> return 1;
> }
>
> Best.
> Ranier Vilela
> ------------------------------------------------------------
> ------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> Iup-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/iup-users
>
>
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Iup-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/iup-users