edje/epp - clean up memory allocated.

This commit is contained in:
ChunEon Park 2014-05-27 22:17:01 +09:00
parent e47373aee1
commit dc945ccb55
1 changed files with 2 additions and 0 deletions

View File

@ -3892,6 +3892,7 @@ do_error(cpp_reader * pfile, struct directive *keyword EINA_UNUSED,
copy[length] = 0;
SKIP_WHITE_SPACE(copy);
cpp_error(pfile, "#error %s", copy);
free(copy);
return 0;
}
@ -3912,6 +3913,7 @@ do_warning(cpp_reader * pfile, struct directive *keyword EINA_UNUSED,
copy[length] = 0;
SKIP_WHITE_SPACE(copy);
cpp_warning(pfile, "#warning %s", copy);
free(copy);
return 0;
}