evas - rsvg loader - comment out deprecated func from rsvg we don't need

it seesm we don't need this. unref should shut down the rsvg obj
anyway, and rsvg_handle_close() has been deprecated since 2.46
This commit is contained in:
Carsten Haitzler 2019-09-16 01:47:05 +01:00
parent e3610b92b9
commit f7a33a326d
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ _svg_shutdown(void)
{
if (rsvg)
{
rsvg_handle_close(rsvg, NULL);
// we don't really need this it seems and it's deprecated in 2.46
// rsvg_handle_close(rsvg, NULL);
g_object_unref(rsvg);
}
// Maybe it's not crashing anymore, let's try it.