Displaying 1 result from an estimated 1 matches for "cli_set_session_key".
2004 Aug 06
0
winbindd PANIC: smb_xmalloc: malloc fail
...pendix Bugs of the Samba HOWTO collection
===============================================================
PANIC: internal error
Are there any know issues with the gcc 2.9 compiler? Or perhaps I'm
missing a flag?
I tracked it down to this segment of code in libsmb/cliconnect.c
static void cli_set_session_key (struct cli_state *cli, const DATA_BLOB
session_key)
{
cli->user_session_key = data_blob(session_key.data,
session_key.length);
}
I can verify the value of session_key.length is 16 prior to the call to
cli_set_session_key,
but in data_blob the value becomes 2534319874.
If I add a DE...