Browse Source

* Fix SkipValue for string values

michael 4 years ago
parent
commit
7d544eafc0
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/rtl/classes.pas

+ 3 - 1
packages/rtl/classes.pas

@@ -6923,8 +6923,10 @@ begin
     vaInt64,
     vaInt64,
     vaDouble:
     vaDouble:
       SkipBytes(8);
       SkipBytes(8);
-    vaString, vaIdent:
+    vaIdent:
       ReadStr;
       ReadStr;
+    vaString:
+      ReadString(vaString);
     vaBinary:
     vaBinary:
       begin
       begin
         Count:=LongInt(ReadDWord);
         Count:=LongInt(ReadDWord);