diff options
Diffstat (limited to 'uid.c')
-rw-r--r-- | uid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -117,7 +117,7 @@ char *str; new = (struct idlist *)xmalloc(sizeof(struct idlist)); new->num = num; - new->id = strdup(str); + new->id = xstrdup(str); new->next = *idl; *idl = new; } |