diff options
Diffstat (limited to 'listing.c')
-rw-r--r-- | listing.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -311,7 +311,7 @@ AddDirectory(char *head, char *ptrn, char *rest, char *map) if (ptrn && (!XkbNameMatchesPattern(filename, ptrn))) continue; tmpsize = (head ? strlen(head) : 0) + strlen(filename) + 2; - tmp = uAlloc(tmpsize); + tmp = malloc(tmpsize); if (!tmp) continue; snprintf(tmp, tmpsize, "%s%s%s", |