|
From: Tom Hu <to...@ci...> - 2004-08-21 00:57:51
|
I got this error: Syscall param socketcall.sendto(msg) contains uninitialised or unaddressable byte(s) However, there are 5 parameters passed to this systcall. Is any better way to find which parameter causes this error? Thanks, Tom Hu |
|
From: Tom H. <th...@cy...> - 2004-08-21 06:39:02
|
In message <412...@ci...>
Tom Hu <to...@ci...> wrote:
> Syscall param socketcall.sendto(msg) contains uninitialised or
> unaddressable byte(s)
> However, there are 5 parameters passed to this systcall. Is any better
Actually there are six arguments, and it is telling you which one
by putting (msg) after the name. That means it is the actual message
being sent - ie the buffer argument.
Tom
--
Tom Hughes (th...@cy...)
Software Engineer, Cyberscience Corporation
http://www.cyberscience.com/
|