From: Konrad Rzeszutek <konrad@xxxxxxxxxxxxxxxxxxxx> When using the internal memory leak the function that call realloc get a confused output. The fix puts the list of operation in the right order. --- libmultipath/memory.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/libmultipath/memory.c b/libmultipath/memory.c index 71dfe40..bd6ae5e 100644 --- a/libmultipath/memory.c +++ b/libmultipath/memory.c @@ -459,9 +459,8 @@ dbg_realloc(void *buffer, unsigned long size, char *file, char *function, if (debug & 1) printf("realloc [%3d:%3d] %p, %4ld %s %d %s -> %p %4ld %s %d %s\n", i, number_alloc_list, alloc_list[i].ptr, - alloc_list[i].size, file, line, function, buf, size, - alloc_list[i].file, alloc_list[i].line, - alloc_list[i].func); + alloc_list[i].size, alloc_list[i].file, alloc_list[i].line, alloc_list[i].func, + buf, size, file, line, function); alloc_list[i].ptr = buf; alloc_list[i].size = size; -- 1.5.4.1 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel