lib/package_msg.c: fix a heap overflow (noticed by @Gottox).

This commit is contained in:
Juan RP 2014-09-16 09:13:32 +02:00
parent 3efd345e84
commit 6894980983

View File

@ -59,7 +59,7 @@ xbps_cb_message(struct xbps_handle *xhp, xbps_dictionary_t pkgd, const char *key
xbps_dbg_printf(xhp, "[%s] %s: fmemopen %s\n", __func__, pkgver, strerror(rv));
goto out;
};
buf = malloc(len);
buf = malloc(len+1);
assert(buf);
if (fread(buf, len, 1, f) != len) {
if (ferror(f)) {