diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-07 18:02:34 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-07 18:02:34 -0700 |
commit | b9770941ae829ad2cb985efe809d6e3dd690648b (patch) | |
tree | 8a7373b23d8099bcbe627865ae0a2ac662d2af11 | |
parent | 0ecf5f3251033ab6efa1a0d881f75ed9ce60b5a4 (diff) |
Call strdup directly, instead of via copy macro
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | def.h | 1 | ||||
-rw-r--r-- | include.c | 6 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | parse.c | 6 |
4 files changed, 7 insertions, 8 deletions
@@ -130,7 +130,6 @@ struct filepointer { #include <stdlib.h> -#define copy(s) strdup(s) int match(const char *str, const char * const *list); char *base_name(const char *file); char *getnextline(struct filepointer *fp); @@ -56,7 +56,7 @@ issymbolic(const char *dir, const char *component) return (TRUE); if (lstat(buf, &st) == 0 && (st.st_mode & S_IFMT) == S_IFLNK) { - *pp++ = copy(buf); + *pp++ = strdup(buf); if (pp >= ¬dotdot[ MAXDIRS ]) fatalerr("out of .. dirs, increase MAXDIRS\n"); return(TRUE); @@ -153,12 +153,12 @@ newinclude(const char *newfile, const char *incstring) ip = inclistp++; if (inclistp == inclist + MAXFILES - 1) fatalerr("out of space: increase MAXFILES\n"); - ip->i_file = copy(newfile); + ip->i_file = strdup(newfile); if (incstring == NULL) ip->i_incstring = ip->i_file; else - ip->i_incstring = copy(incstring); + ip->i_incstring = strdup(incstring); inclistnext = inclistp; return(ip); @@ -742,7 +742,7 @@ done: char *base_name(const char *in_file) { char *p; - char *file = copy(in_file); + char *file = strdup(in_file); for(p=file+strlen(file); p>file && *p != '.'; p--) ; if (*p == '.') @@ -376,7 +376,7 @@ define2(const char *name, const char *val, struct inclist *file) debug(1,("redefining %s from %s to %s in file %s\n", name, (*sp)->s_value, val, file->i_file)); free((*sp)->s_value); - (*sp)->s_value = copy(val); + (*sp)->s_value = strdup(val); return; } @@ -392,8 +392,8 @@ define2(const char *name, const char *val, struct inclist *file) fatalerr("malloc()/realloc() failure in insert_defn()\n"); debug(1,("defining %s to %s in file %s\n", name, val, file->i_file)); - stab->s_name = copy(name); - stab->s_value = copy(val); + stab->s_name = strdup(name); + stab->s_value = strdup(val); *sp = stab; } |