Re: [Aldaba-devel] Problem when installing Aldaba Suite 0.1.7 in Fedora 10
Status: Beta
Brought to you by:
luis_mg
|
From: Luis M. - A. K. S. <ald...@go...> - 2009-04-01 15:14:55
|
OK, I think I have found one error that might be causing memory corruption. Right now I don't really have time to release a new version that fixes the problem but I can tell you what to do: Go to file ipid_server.c, function Ip_Id_getFilterString() Where it says: char tmpbuff[18]; /* 18 = lenght of string "or dst port 65535" + 1 */ memset(tmpbuff, 0, 17); Change it to: **char tmpbuff[24]; /* Enough bytes to hold "or dst port 65535" + 1 */ memset(tmpbuff, 0, 24); Compile and run. Please let me know if that solves the problem. Regards, Luis. |