elementary/map - fixed memory leak

SVN revision: 82442
This commit is contained in:
ChunEon Park 2013-01-09 08:40:56 +00:00
parent 05b798b1e1
commit 0b6a6dfc08
1 changed files with 1 additions and 1 deletions

View File

@ -2807,8 +2807,8 @@ _kml_parse(Elm_Map_Route *r)
{
eina_simple_xml_parse
(buf, sz, EINA_TRUE, _xml_route_dump_cb, &dump);
free(buf);
}
free(buf);
}
}
fclose(f);