提交 c593aef7 编写于 作者: J Jim Meyering

qemudDomainAttachSCSIDisk: avoid FP NULL-ptr-deref from clang

* src/util/conf.c (virConfParseValue): Add an sa_assert.
上级 18fa9b18
/** /**
* conf.c: parser for a subset of the Python encoded Xen configuration files * conf.c: parser for a subset of the Python encoded Xen configuration files
* *
* Copyright (C) 2006, 2007, 2008, 2009 Red Hat, Inc. * Copyright (C) 2006, 2007, 2008, 2009, 2010 Red Hat, Inc.
* *
* See COPYING.LIB for the License of this software * See COPYING.LIB for the License of this software
* *
...@@ -473,6 +473,13 @@ virConfParseValue(virConfParserCtxtPtr ctxt) ...@@ -473,6 +473,13 @@ virConfParseValue(virConfParserCtxtPtr ctxt)
SKIP_BLANKS_AND_EOL; SKIP_BLANKS_AND_EOL;
} }
while ((ctxt->cur < ctxt->end) && (CUR != ']')) { while ((ctxt->cur < ctxt->end) && (CUR != ']')) {
/* Tell Clang that when execution reaches this point
"lst" is guaranteed to be non-NULL. This stops it
from issuing an invalid NULL-dereference warning about
"prev = lst; while (prev->next..." below. */
sa_assert (lst);
if (CUR != ',') { if (CUR != ',') {
virConfError(ctxt, VIR_ERR_CONF_SYNTAX, virConfError(ctxt, VIR_ERR_CONF_SYNTAX,
_("expecting a separator in list")); _("expecting a separator in list"));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册