Lines Matching refs:props
262 PropPtr props = NULL;
297 props = malloc(nprops * sizeof(PropRec));
298 if (props == NULL)
302 props[i].name = getInt32(f, format);
303 props[i].isString = getInt8(f, format);
304 props[i].value = getInt32(f, format);
324 if (!props[i].isString ||
325 props[i].name >= string_size - 4 || props[i].value >= string_size)
327 if (strcmp(strings + props[i].name, "FONT") == 0)
334 s = strdup(strings + props[i].value);
339 free(props);
346 if (props)
347 free(props);