Quellcode durchsuchen

Fix signess bug in the syscall dispatcher (#88)

Michał Kowalczyk vor 8 Jahren
Ursprung
Commit
26eae52106
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      LibOS/shim/src/syscallas.S

+ 1 - 1
LibOS/shim/src/syscallas.S

@@ -41,7 +41,7 @@ syscalldb:
         pushq %rbx
 
         cmp $LIBOS_SYSCALL_BOUND, %rax
-        jge isundef
+        jae isundef
 
         leaq shim_table(%rip), %rbx
         movq (%rbx,%rax,8), %rbx