Revision 7464f058

b/check-qdict.c
267 267
{
268 268
    char value[128];
269 269

  
270
    if (fscanf(file, "%s%s", key, value) == EOF)
270
    if (fscanf(file, "%127s%127s", key, value) == EOF) {
271 271
        return NULL;
272
    }
272 273
    remove_dots(key);
273 274
    return qstring_from_str(value);
274 275
}

Also available in: Unified diff