MdeModulePkg: Fix VS2012 build failure.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin <shumin.qiu@intel.com> Reviewed-by: Feng Tian <feng.tian@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19365 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -1211,6 +1211,9 @@ compile_length_enclose_node(EncloseNode* node, regex_t* reg)
|
|||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
int tlen;
|
int tlen;
|
||||||
|
QtfrNode* qn;
|
||||||
|
|
||||||
|
qn = NULL;
|
||||||
|
|
||||||
if (node->type == ENCLOSE_OPTION)
|
if (node->type == ENCLOSE_OPTION)
|
||||||
return compile_length_option_node(node, reg);
|
return compile_length_option_node(node, reg);
|
||||||
@@ -1253,7 +1256,7 @@ compile_length_enclose_node(EncloseNode* node, regex_t* reg)
|
|||||||
if (node->target == NULL) {
|
if (node->target == NULL) {
|
||||||
CHECK_NULL_RETURN_MEMERR(node->target);
|
CHECK_NULL_RETURN_MEMERR(node->target);
|
||||||
}
|
}
|
||||||
QtfrNode* qn = NQTFR(node->target);
|
qn = NQTFR(node->target);
|
||||||
tlen = compile_length_tree(qn->target, reg);
|
tlen = compile_length_tree(qn->target, reg);
|
||||||
if (tlen < 0) return tlen;
|
if (tlen < 0) return tlen;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user