diffcore-rename: plug memory leak.
authorJunio C Hamano <junkio@cox.net>
Thu, 23 Feb 2006 03:45:48 +0000 (19:45 -0800)
committerJunio C Hamano <junkio@cox.net>
Thu, 23 Feb 2006 03:45:48 +0000 (19:45 -0800)
Spotted by Nicolas Pitre.

Signed-off-by: Junio C Hamano <junkio@cox.net>
diffcore-rename.c

index 39d9126..ffd126a 100644 (file)
@@ -176,8 +176,10 @@ static int estimate_similarity(struct diff_filespec *src,
        /* A delta that has a lot of literal additions would have
         * big delta_size no matter what else it does.
         */
-       if (base_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE)
+       if (base_size * (MAX_SCORE-minimum_score) < delta_size * MAX_SCORE) {
+               free(delta);
                return 0;
+       }
 
        /* Estimate the edit size by interpreting delta. */
        if (count_delta(delta, delta_size, &src_copied, &literal_added)) {