Reacted on compiler warning of gcc on AIX. Thanks Richard Nolde.

This commit is contained in:
Thomas Schmitt 2014-04-03 21:45:19 +02:00
parent 97ec68530b
commit ed8066580a
1 changed files with 2 additions and 0 deletions

View File

@ -332,6 +332,8 @@ char *get_rr_fname(Ecma119Image *t, char *str)
ret = iso_get_rr_name(t->opts, t->input_charset, t->output_charset,
t->image->id, str, &name, 0);
if (ret < 0)
return NULL;
return name;
}