exactness-inspect: do not use sprintf

there is not yet a CID for this, but we should probebly not do that.

Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org>
Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Differential Revision: https://phab.enlightenment.org/D11731
This commit is contained in:
Marcel Hollerbach 2020-04-20 08:46:45 +02:00 committed by Stefan Schmidt
parent 114412d547
commit df16616feb
1 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ _grp_text_get(void *data, Evas_Object *gl, const char *part EINA_UNUSED)
if (!compare)
{
Exactness_Unit *unit = efl_key_data_get(gl, "unit");
sprintf(buf2, "Fonts directory: %s", unit->fonts_path ? unit->fonts_path : "None");
snprintf(buf2, sizeof(buf2), "Fonts directory: %s", unit->fonts_path ? unit->fonts_path : "None");
}
else
{
@ -326,7 +326,7 @@ _grp_text_get(void *data, Evas_Object *gl, const char *part EINA_UNUSED)
Eo *gl2 = eina_list_nth(_gls, 1);
Exactness_Unit *unit1 = efl_key_data_get(gl1, "unit");
Exactness_Unit *unit2 = efl_key_data_get(gl2, "unit");
sprintf(buf2, "Fonts directory comparison: "LDIFF(%s)"/"RDIFF(%s),
snprintf(buf2, sizeof(buf2), "Fonts directory comparison: "LDIFF(%s)"/"RDIFF(%s),
unit1 ? unit1->fonts_path : "(NULL)", unit2 ? unit2->fonts_path : "(NULL)");
}
return strdup(buf2);