Sources for RadASM 2.2.1.1 uploaded

Started by KetilO, May 03, 2007, 05:42:06 PM

Previous topic - Next topic

arjuns


v38t6ugte

Thanks the SOURCE, to READING THE SOURCE!
Great the working!

I am chinese so don't carefuly read my pool words.

:U

masmgod

Thank you so much for releasing the source code

Unfortunately I have found a bug. the bug is as follows

on line 986 of ini\inifile.asm you have written

.if eax!=-1
invoke GetPrivateProfileString,addr iniWindow,addr iniFolderR,addr szNULL,addr iniBuffer, 64 ,addr iniFile
mov eax, sizeof iniBuffer

unfortunately in win32 the path can be up to 256 characters long you have set it at 64 if you change the above line to
invoke GetPrivateProfileString,addr iniWindow,addr iniFolderR,addr szNULL,addr iniBuffer, sizeof iniBuffer ,addr iniFile

the above bug is eradicated

by the way my path is C:\Documents and Settings\Kieron  Higgs\My Documents\visual studio projects\RadAsm Code\Debug

and this is what is in my radasm.ini

without this change it was recognising my path as C:\Documents and Settings\Kieron  Higgs\My Documents\visual stu


I hope this helps

Of course any more bugs and I will post them

masmgod

My apologies for the above  post I had inserted a bit of my own code in this was

mov eax, sizeof iniBuffer

it was put in for debugging this problem ( I wanted to know how big the iniBuffer was) sorry about the confusion



Regards


MasmGod

KetilO

Thanks masmgod

Note that this bug does not apply to normal use. It is only used while developing RadASM.

Tip:
Holding the cursor over the word iniBuffer will show its size in the info tool.

KetilO

KetilO


six_L

regards

ostaith


ipadilla