提交 18fa9b18 编写于 作者: J Jim Meyering

xend_internal.c: assure clang that we do not dereference NULL

* src/xen/xend_internal.c (xend_parse_sexp_desc_char): Add three
uses of sa_assert, each preceding a strchr(value,... to assure
clang that "value" is non-NULL.
上级 a0dc4521
...@@ -1284,6 +1284,7 @@ xend_parse_sexp_desc_char(virBufferPtr buf, ...@@ -1284,6 +1284,7 @@ xend_parse_sexp_desc_char(virBufferPtr buf,
virBufferVSprintf(buf, " <source path='%s'/>\n", virBufferVSprintf(buf, " <source path='%s'/>\n",
value); value);
} else if (STREQ(type, "tcp")) { } else if (STREQ(type, "tcp")) {
sa_assert (value);
const char *offset = strchr(value, ':'); const char *offset = strchr(value, ':');
const char *offset2; const char *offset2;
const char *mode, *protocol; const char *mode, *protocol;
...@@ -1325,6 +1326,7 @@ xend_parse_sexp_desc_char(virBufferPtr buf, ...@@ -1325,6 +1326,7 @@ xend_parse_sexp_desc_char(virBufferPtr buf,
" <protocol type='%s'/>\n", " <protocol type='%s'/>\n",
protocol); protocol);
} else if (STREQ(type, "udp")) { } else if (STREQ(type, "udp")) {
sa_assert (value);
const char *offset = strchr(value, ':'); const char *offset = strchr(value, ':');
const char *offset2, *offset3; const char *offset2, *offset3;
...@@ -1383,6 +1385,7 @@ xend_parse_sexp_desc_char(virBufferPtr buf, ...@@ -1383,6 +1385,7 @@ xend_parse_sexp_desc_char(virBufferPtr buf,
} }
} else if (STREQ(type, "unix")) { } else if (STREQ(type, "unix")) {
sa_assert (value);
const char *offset = strchr(value, ','); const char *offset = strchr(value, ',');
int dolisten = 0; int dolisten = 0;
if (offset) if (offset)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册