edc_parser: Fix to move pointer correctly.

This commit is contained in:
Jaehyun Cho 2016-07-22 14:58:00 +09:00
parent 7331eb0390
commit 8b8aa1fdfe
1 changed files with 2 additions and 2 deletions

View File

@ -1646,7 +1646,7 @@ parser_first_group_name_get(parser_data *pd EINA_UNUSED, Evas_Object *entry)
{
p = strstr(p, "#endif");
if (!p) goto end;
p++;
p += 6; //strlen(#endif)
continue;
}
@ -1933,7 +1933,7 @@ parser_group_list_get(parser_data *pd, Evas_Object *entry)
{
p = strstr(p, "#endif");
if (!p) goto end;
p++;
p += 6; //strlen(#endif)
continue;
}