Unverified Commit 899fd4c5 by Edward Thomson Committed by GitHub

Merge pull request #6223 from libgit2/ethomson/xdiff

xdiff: use xdl_free not free
parents 1afad26e b722c45d
......@@ -23,12 +23,12 @@
#if !defined(XDIFF_H)
#define XDIFF_H
#include "git-xdiff.h"
#ifdef __cplusplus
extern "C" {
#endif /* #ifdef __cplusplus */
#include "git-xdiff.h"
/* xpparm_t.flags */
#define XDF_NEED_MINIMAL (1 << 0)
......
......@@ -88,7 +88,7 @@ static int xdl_cleanup_merge(xdmerge_t *c)
if (c->mode == 0)
count++;
next_c = c->next;
free(c);
xdl_free(c);
}
return count;
}
......@@ -456,7 +456,7 @@ static void xdl_merge_two_conflicts(xdmerge_t *m)
m->chg1 = next_m->i1 + next_m->chg1 - m->i1;
m->chg2 = next_m->i2 + next_m->chg2 - m->i2;
m->next = next_m->next;
free(next_m);
xdl_free(next_m);
}
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment