Hello!
I've installed Gimp 2.10.20 in my Ubuntu 20.04.1 LTS using Flatpak. I've written a Script-Fu which processes a given image by scaling, and applying threshold and oilify filter. The script runs successfully but in the end, I get this weird message (see attached image).
gimp-2.10: GEGL-WARNING: (../gegl/buffer/gegl-tile-handler-cache.c:1076):gegl_tile_cache_destroy: runtime check failed: (g_queue_is_empty (&cache_queue))
EEEEeEeek! 2 GeglBuffers leaked
To debug GeglBuffer leaks, set the environment variable GEGL_DEBUG to "buffer-alloc"
I've found out that this line is responsible for the warning message (I commented out everything in the code except this line, and I still get the error).
filename-in is something like "test.jpg". Do you maybe know what it might cause it? Thanks
Note: I was also getting the same warning with Gimp 2.10.18 which I had installed via PPA.
I've installed Gimp 2.10.20 in my Ubuntu 20.04.1 LTS using Flatpak. I've written a Script-Fu which processes a given image by scaling, and applying threshold and oilify filter. The script runs successfully but in the end, I get this weird message (see attached image).
gimp-2.10: GEGL-WARNING: (../gegl/buffer/gegl-tile-handler-cache.c:1076):gegl_tile_cache_destroy: runtime check failed: (g_queue_is_empty (&cache_queue))
EEEEeEeek! 2 GeglBuffers leaked
To debug GeglBuffer leaks, set the environment variable GEGL_DEBUG to "buffer-alloc"
I've found out that this line is responsible for the warning message (I commented out everything in the code except this line, and I still get the error).
Code:
...
(let*
(
(image (car (gimp-file-load RUN-NONINTERACTIVE filename-in "")))
...
...
...
))
filename-in is something like "test.jpg". Do you maybe know what it might cause it? Thanks
Note: I was also getting the same warning with Gimp 2.10.18 which I had installed via PPA.