80dc240519
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/acpica-tools.git#defe2b64332fc44bf9915c8f57d2614c529cdb43
23 lines
718 B
Diff
23 lines
718 B
Diff
Index: acpica-unix2-20200925/source/compiler/aslparseop.c
|
|
===================================================================
|
|
--- acpica-unix2-20200925.orig/source/compiler/aslparseop.c
|
|
+++ acpica-unix2-20200925/source/compiler/aslparseop.c
|
|
@@ -285,7 +285,16 @@ TrCreateValuedLeafOp (
|
|
|
|
|
|
Op = TrAllocateOp (ParseOpcode);
|
|
- Op->Asl.Value.Integer = Value;
|
|
+ if (ParseOpcode == PARSEOP_NAMESTRING ||
|
|
+ ParseOpcode == PARSEOP_NAMESEG ||
|
|
+ ParseOpcode == PARSEOP_STRING_LITERAL)
|
|
+ {
|
|
+ Op->Asl.Value.String = (char *) Value;
|
|
+ }
|
|
+ else
|
|
+ {
|
|
+ Op->Asl.Value.Integer = Value;
|
|
+ }
|
|
|
|
DbgPrint (ASL_PARSE_OUTPUT,
|
|
"\nCreateValuedLeafOp Ln/Col %u/%u NewOp %p "
|