Thread (11 messages) flat view 11 messages, 7 authors, 2016-06-15

Re: [PATCH] This patch is to allow 12 different OS's to compile and run git.

From: Jeremy Maitin-Shepard <hidden>
Date: 2016-06-15 22:44:42

Possibly related (same subject, not in this thread)

Boyd Lynn Gerber [off-list ref] writes:

[snip]
quoted hunk
diff --git a/progress.c b/progress.c
index d19f80c..11a0841 100644
--- a/progress.c
+++ b/progress.c
@@ -241,7 +241,8 @@ void stop_progress_msg(struct progress **p_progress, const
char *msg)
 	*p_progress = NULL;
 	if (progress->last_value != -1) {
 		/* Force the last update */
-		char buf[strlen(msg) + 5];
+		/* char buf[strlen(msg) + 5]; */
+		char *buf = malloc (strlen(msg) + 5 );
This change will result in the allocated memory being leaked, which is
probably not correct.  Perhaps change it to alloca instead.

-- 
Jeremy Maitin-Shepard
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help