mirror of https://github.com/acidanthera/audk.git
For VOID* type PCD and in byte array method, treat {0} as NULL value but not {}.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@868 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
9ffc622e79
commit
ddb87685e2
|
@ -750,7 +750,7 @@ public class Token {
|
|||
judgedValue.equalsIgnoreCase("\"\"") ||
|
||||
judgedValue.equalsIgnoreCase("L\"\"") ||
|
||||
(judgedValue.length() == 0) ||
|
||||
judgedValue.equalsIgnoreCase("{}")) {
|
||||
judgedValue.equalsIgnoreCase("{0}")) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue