diff options
Diffstat (limited to 'uid.c')
-rw-r--r-- | uid.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -394,6 +394,7 @@ struct idlist *copy_str_list(struct idlist *idl) else { newnode = (struct idlist *)xmalloc(sizeof(struct idlist)); + memcpy(newnode, idl, sizeof(struct idlist)); newnode->next = copy_str_list(idl->next); return(newnode); } |