Window attachment, malloc debugging, fix a segfault with no sessions.

This commit is contained in:
Nicholas Marriott
2007-10-04 11:52:03 +00:00
parent ff56ed7bd6
commit 68a5d5c00b
11 changed files with 121 additions and 29 deletions

View File

@ -1,4 +1,4 @@
/* $Id: server-msg.c,v 1.22 2007-10-04 00:02:10 nicm Exp $ */
/* $Id: server-msg.c,v 1.23 2007-10-04 11:52:03 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -118,6 +118,12 @@ server_msg_fn_command(struct hdr *hdr, struct client *c)
log_debug("got command %u %s from client %d",
cmd->entry->type, cmd->entry->name, c->fd);
ctx.error = server_msg_fn_command_error;
ctx.print = server_msg_fn_command_print;
ctx.client = c;
ctx.flags = 0;
if (cmd->entry->flags & CMD_NOSESSION)
ctx.session = NULL;
else {
@ -129,12 +135,6 @@ server_msg_fn_command(struct hdr *hdr, struct client *c)
}
}
ctx.error = server_msg_fn_command_error;
ctx.print = server_msg_fn_command_print;
ctx.client = c;
ctx.flags = 0;
cmd_exec(cmd, &ctx);
cmd_free(cmd);