diff options
author | Aaron Pop <aaronp@ami.com> | 2014-12-22 02:21:53 +0000 |
---|---|---|
committer | ydong10 <ydong10@Edk2> | 2014-12-22 02:21:53 +0000 |
commit | f571ef9880ed8f3f3b41b12015b5079b508151de (patch) | |
tree | 837d2653d9919c64948c46f363677169eb846f68 /BaseTools/Source/C/VfrCompile | |
parent | 36c6413f76e5f16f866dc77e213abbcc6e13e7f2 (diff) | |
download | edk2-platforms-f571ef9880ed8f3f3b41b12015b5079b508151de.tar.xz |
Fixed VfrCompile crash on efivarstore statement.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Aaron Pop <aaronp@ami.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16544 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Source/C/VfrCompile')
-rw-r--r-- | BaseTools/Source/C/VfrCompile/VfrSyntax.g | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/C/VfrCompile/VfrSyntax.g b/BaseTools/Source/C/VfrCompile/VfrSyntax.g index 1a5b3fd588..65a9e4e7f2 100644 --- a/BaseTools/Source/C/VfrCompile/VfrSyntax.g +++ b/BaseTools/Source/C/VfrCompile/VfrSyntax.g @@ -987,13 +987,13 @@ vfrStatementVarStoreEfi : _PCATCH(gCVfrVarDataTypeDB.GetDataTypeSize(TypeName, &Size), LineNum);
} else {
_PCATCH(mCVfrDataStorage.DeclareBufferVarStore (
- TN->getText(),
+ StoreName,
&Guid,
&gCVfrVarDataTypeDB,
TypeName,
VarStoreId
), LineNum);
- _PCATCH(mCVfrDataStorage.GetVarStoreId(TN->getText(), &VarStoreId, &Guid), VN);
+ _PCATCH(mCVfrDataStorage.GetVarStoreId(StoreName, &VarStoreId, &Guid), VN);
_PCATCH(gCVfrVarDataTypeDB.GetDataTypeSize(TypeName, &Size), N->getLine());
}
VSEObj.SetGuid (&Guid);
|