[gnome-software/wip/temp/ubuntu-xenial-rebased: 260/329] Add NUL terminator to end of string
- From: Iain Lane <iainl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software/wip/temp/ubuntu-xenial-rebased: 260/329] Add NUL terminator to end of string
- Date: Fri, 29 Apr 2016 14:07:12 +0000 (UTC)
commit 1de2c25ad931bcc58da049bb63e01127212b3232
Author: William Hua <william hua canonical com>
Date: Sun Apr 17 16:32:58 2016 -0400
Add NUL terminator to end of string
src/plugins/gs-ubuntu-snapd.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/plugins/gs-ubuntu-snapd.c b/src/plugins/gs-ubuntu-snapd.c
index a426e17..aabc9a8 100644
--- a/src/plugins/gs-ubuntu-snapd.c
+++ b/src/plugins/gs-ubuntu-snapd.c
@@ -238,8 +238,9 @@ send_snapd_request (gboolean authenticate,
if (response_type)
*response_type = g_strdup (soup_message_headers_get_one (headers, "Content-Type"));
if (response) {
- *response = g_malloc (chunk_length + 1);
+ *response = g_malloc (chunk_length + 2);
memcpy (*response, chunk_start, chunk_length + 1);
+ (*response)[chunk_length + 1] = '\0';
}
if (response_length)
*response_length = chunk_length;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]