1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Missed dm_free in last commit

This commit is contained in:
Zdenek Kabelac 2012-02-23 18:19:32 +00:00
parent f72b184e3e
commit b5184347b6

View File

@ -161,6 +161,7 @@ int dm_asprintf(char **result, const char *format, ...)
dm_free(buf); dm_free(buf);
return -1; return -1;
} }
dm_free(buf);
} else } else
*result = buf; *result = buf;