Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Replace uses of strdup with xstrdup.
[gitweb.git]
/
path-list.c
diff --git
a/path-list.c
b/path-list.c
index b1ee72d1dc25085f2114748001d21e3e518e54ee..0c332dc7b556ba894f0452b0172e7dd1e485f929 100644
(file)
--- a/
path-list.c
+++ b/
path-list.c
@@
-45,7
+45,7
@@
static int add_entry(struct path_list *list, const char *path)
(list->nr - index)
* sizeof(struct path_list_item));
list->items[index].path = list->strdup_paths ?
- strdup(path) : (char *)path;
+
x
strdup(path) : (char *)path;
list->items[index].util = NULL;
list->nr++;