Browse Source

Fix signess bug in the syscall dispatcher (#88)

Michał Kowalczyk 6 years ago
parent
commit
26eae52106
1 changed files with 1 additions and 1 deletions
  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