Thread (5 messages) flat view 5 messages, 2 authors, 2016-06-15

Re: [PATCH] builtin/rm.c: Use ALLOC_GROW instead of alloc_nr and xrealloc.

From: Thiago Farina <hidden>
Date: 2016-06-15 22:50:16

On Mon, Dec 13, 2010 at 11:48 PM, Thiago Farina [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Signed-off-by: Thiago Farina <redacted>
---
 builtin/rm.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/builtin/rm.c b/builtin/rm.c
index c7b7bb3..faeedfc 100644
--- a/builtin/rm.c
+++ b/builtin/rm.c
@@ -22,10 +22,7 @@ static struct {
 static void add_list(const char *name)
 {
-       if (list.nr >= list.alloc) {
-               list.alloc = alloc_nr(list.alloc);
-               list.name = xrealloc(list.name, list.alloc * sizeof(const char *));
-       }
+       ALLOC_GROW(list.name, list.nr + 1, list.alloc);
       list.name[list.nr++] = name;
 }
+Jonathan, he might Ack this.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help