* autoload.cc (noload): Properly mask low order word for determining number of
bytes to pop.
This commit is contained in:
parent
57e2ae682c
commit
0c12979b72
|
@ -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>
|
2002-05-27 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* fhandler_disk_file.cc (fhandler_disk_file::fstat): Minor logic
|
* fhandler_disk_file.cc (fhandler_disk_file::fstat): Minor logic
|
||||||
|
|
|
@ -123,7 +123,7 @@ noload: \n\
|
||||||
decl %eax # Yes. This is the # of bytes + 1 \n\
|
decl %eax # Yes. This is the # of bytes + 1 \n\
|
||||||
popl %edx # Caller's caller \n\
|
popl %edx # Caller's caller \n\
|
||||||
pushl %eax # Save for later \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\
|
addl %eax,%esp # Pop off bytes \n\
|
||||||
movl $127,%eax # ERROR_PROC_NOT_FOUND \n\
|
movl $127,%eax # ERROR_PROC_NOT_FOUND \n\
|
||||||
pushl %eax # First argument \n\
|
pushl %eax # First argument \n\
|
||||||
|
|
Loading…
Reference in New Issue