* Fixed crash during dll loading on android-i386 (Stupid error because I am not comfortable with at&t i386 assembler syntax). Issue #25435.

git-svn-id: trunk@26269 -
This commit is contained in:
yury 2013-12-23 12:02:50 +00:00
parent 4eb9043ac7
commit 90b8e051cb

View File

@ -31,7 +31,7 @@ FPC_SHARED_LIB_START:
/* Get environment info from libc */
movl environ,%eax
/* Check if environment is NULL */
cmpl %eax,0
test %eax,%eax
jne env_ok
leal EmptyEnv,%eax
env_ok: