projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6eb269f
)
utils_ovs: Avoid potential access of freed memory
author
Ciara Loftus
<ciara.loftus@intel.com>
Tue, 29 May 2018 13:46:31 +0000
(14:46 +0100)
committer
Ciara Loftus
<ciara.loftus@intel.com>
Tue, 29 May 2018 13:48:49 +0000
(14:48 +0100)
Fixes #2800
Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
src/utils_ovs.c
patch
|
blob
|
history
diff --git
a/src/utils_ovs.c
b/src/utils_ovs.c
index
3b7236c
..
4ca86ae
100644
(file)
--- a/
src/utils_ovs.c
+++ b/
src/utils_ovs.c
@@
-1051,6
+1051,8
@@
ovs_db_t *ovs_db_init(const char *node, const char *service,
ret = ovs_db_destroy(pdb);
if (ret > 0)
goto failure;
+ else
+ return NULL;
}
/* init polling thread */
@@
-1059,6
+1061,8
@@
ovs_db_t *ovs_db_init(const char *node, const char *service,
if (ret > 0) {
ovs_db_event_thread_data_destroy(pdb);
goto failure;
+ } else {
+ return NULL;
}
}
return pdb;