Browse Source

Fix for entries without a RuntimeID.

Martijn Laan 3 months ago
parent
commit
dc5534cf53
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Projects/Src/Compiler.SetupCompiler.pas

+ 1 - 1
Projects/Src/Compiler.SetupCompiler.pas

@@ -4618,7 +4618,7 @@ begin
       end;
 
       RuntimeID := Values[paRuntimeID].Data;
-      if ISSigKeysRuntimeIDExists(RuntimeID) then
+      if (RuntimeID <> '') and ISSigKeysRuntimeIDExists(RuntimeID) then
         AbortCompileFmt(SCompilerISSigKeysNameOrRuntimeIDExists, [ParamISSigKeysRuntimeID, RuntimeID]);
     end;
   except