efl_canvas_vg svg: free the svg tree returned by eet_data_read()
authorSubhransuSekhar Mohanty <sub.mohanty@samsung.com>
Thu, 25 Jul 2019 06:17:05 +0000 (15:17 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Mon, 5 Aug 2019 01:47:28 +0000 (10:47 +0900)
commit33973e3a43ea728d41ed913182f7c12b1dc13639
tree04beeef9c27605a2271e82bd394c92b800b08af1
parent8fb0d394727039a808fedf20a7351d28240cb780
efl_canvas_vg svg: free the svg tree returned by eet_data_read()

The eet_data_read() api creates the structure by referencing the wwt data structure
and reading from eet file. So the structure should be deleted by the user of the function.
As eet_data_read() api documentation dosen't specify about the ownership I guess
we need to free this structure to avoid memory leak.