* autoload.cc (noload): Properly mask low order word for determining number of

bytes to pop.
This commit is contained in:
Christopher Faylor 2002-05-28 02:09:15 +00:00
parent 57e2ae682c
commit 0c12979b72
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-05-27 Christopher Faylor <cgf@redhat.com>
* autoload.cc (noload): Properly mask low order word for determining
number of bytes to pop.
2002-05-27 Christopher Faylor <cgf@redhat.com>
* fhandler_disk_file.cc (fhandler_disk_file::fstat): Minor logic

View File

@ -123,7 +123,7 @@ noload: \n\
decl %eax # Yes. This is the # of bytes + 1 \n\
popl %edx # Caller's caller \n\
pushl %eax # Save for later \n\
xorl $0xffff,%eax # Only want lower word \n\
andl $0xffff,%eax # Only want lower word \n\
addl %eax,%esp # Pop off bytes \n\
movl $127,%eax # ERROR_PROC_NOT_FOUND \n\
pushl %eax # First argument \n\