projects
/
lttng-tools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c66d76
)
Add NULL pointer check
author
David Goulet
<david.goulet@polymtl.ca>
Thu, 25 Aug 2011 19:42:20 +0000
(15:42 -0400)
committer
David Goulet
<david.goulet@polymtl.ca>
Thu, 25 Aug 2011 19:42:20 +0000
(15:42 -0400)
Signed-off-by: David Goulet <david.goulet@polymtl.ca>
liblttngctl/lttngctl.c
patch
|
blob
|
blame
|
history
diff --git
a/liblttngctl/lttngctl.c
b/liblttngctl/lttngctl.c
index b83d5ca92c83b516ade2f4c05336be116839b3fc..b64ace2e6d80de0ce085791f698604e53f8eb523 100644
(file)
--- a/
liblttngctl/lttngctl.c
+++ b/
liblttngctl/lttngctl.c
@@
-343,6
+343,16
@@
static int ask_sessiond(struct lttcomm_session_msg *lsm, void **buf)
goto end;
}
+ /*
+ * Extra protection not to dereference a NULL pointer. If buf is NULL at
+ * this point, an error is returned and data is freed.
+ */
+ if (buf == NULL) {
+ ret = -1;
+ free(data);
+ goto end;
+ }
+
*buf = data;
ret = size;
This page took
0.026163 seconds
and
4
git commands to generate.