From: Roger Dingledine Date: Tue, 9 Nov 2004 10:18:41 +0000 (+0000) Subject: if you're going to ask it to use a body of length 0, X-Git-Tag: debian-version-0.0.8+0.0.9pre5-1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=233f516d61a32ad788688d6dee922c4b26d92c3a;p=thirdparty%2Ftor.git if you're going to ask it to use a body of length 0, don't give it a body. svn:r2742 --- diff --git a/src/or/control.c b/src/or/control.c index bdce4e240c..2df86d906a 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -272,7 +272,7 @@ handle_control_getconf(connection_t *conn, uint16_t body_len, const char *body) msg = smartlist_join_strings(answers, "", 0, &msg_len); send_control_message(conn, CONTROL_CMD_CONFVALUE, - (uint16_t)msg_len, msg); + (uint16_t)msg_len, msg_len?msg:NULL); done: if (answers) SMARTLIST_FOREACH(answers, char *, cp, tor_free(cp));