Page 2 of 2

Re: Last Dos library make FastLHA crashed during GetMsg

Posted: Sun Mar 03, 2013 10:58 pm
by zzd10h
Ah yes, you are right,
by adding

to DataType_Sound_Break
struct DTSoundMessage *DTSoundmsg = AllocSysObjectTags(ASOT_MESSAGE, ASOMSG_Size,sizeof(struct DTSoundMessage),TAG_END);

to Datatype_Sound
FreeSysObject(ASOT_MESSAGE,DTSoundmsg);

it works.

Thank you to spot me my big mistake.

But now, I have to find why FastLHA continues to crash even with the AllocSysObject and FreeSysObject...
certainly another uninitialized thing.

Thank again

Re: Last Dos library make FastLHA crashed during GetMsg

Posted: Mon Mar 04, 2013 6:59 pm
by zzd10h
Yeah !
I resolved my problem.
I was missing a FreeDiskObject...
All works now with the last dos.library.

Shame on me and thank for help :)

I don't know how to change status to solved...

Re: Last Dos library make FastLHA crashed during GetMsg

Posted: Mon Mar 04, 2013 8:06 pm
by nbache
zzd10h wrote:I don't know how to change status to solved...
Just edit your first post in this topic and add "Solved" at the end of the title.

Best regards,

Niels

Re: Last Dos library make FastLHA crashed during GetMsg [SOL

Posted: Tue Mar 05, 2013 7:13 am
by zzd10h
Thanks ;)