| Author |
Message |
Gatchan
 Posts: 2
Phone Model: Samsung S100
Service Provider: Orange |
 Sat Nov 08, 2003 8:19 pm |
I'm trying to remove the limit of the animated gif images, but I need some help.
So far, I've found this :
| Code: | 8D 4C 24 24 lea ecx, [esp+40h+var_1C] ; Load Effective Address
10015226 E8 7B 20 00 00 call ?GetLength@CFile@@UBEKXZ ; CFile::GetLength(void)
1001522B 8B E8 mov ebp, eax
1001522D 81 FD 00 80 00 00 cmp ebp, 8000h ; Compare Two Operands
10015233 76 6E jbe short loc_100152A3 ; Jump if Below or Equal (CF=1 | ZF=1) |
8000h=32768
when I change it to '1 000h', for example, I have a new error message which tells me that the program can't up file bigger thant 100k... But I haven't found where this message appears...
All the code is inside EasyImg.Dll
|
 |
Advertisement
|
|
|
|
 |
 ~ Don ~
 Posts: 2007
Phone Model: Samsung D900 FW: D900XAFI1
Service Provider: NL KPN |
 Sat Nov 08, 2003 10:53 pm |
|
What tool did you use?
|
 |
samzh
 Posts: 92
Phone Model: SGH-V200 SGH-E700; Nokia 7610 |
 Sun Nov 09, 2003 4:30 am |
Ooh... just found the light here... sorry plz help me as to hmm... what's the tool and where to get tutorials something? This sounds new and interesting to me!!!
|
 |
Gatchan
 Posts: 2
Phone Model: Samsung S100
Service Provider: Orange |
 Sun Nov 09, 2003 7:33 am |
| -= Don =- wrote: | | What tool did you use? |
I tried Ida free version, which can be found at www.datarescue.com
|
 |
j.clausse
 Posts: 5 |
 Fri Nov 05, 2004 4:50 am |
10015233 76 6E jbe short
Change this from 6E to EB for JUMP
I guess this should fix the prob.
|