Skip to content
Snippets Groups Projects
Commit 66779137 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Add missing dereference; stop throwing zeroes around.

svn:r2702
parent 11b2c6a4
Branches
Tags
No related merge requests found
......@@ -670,7 +670,7 @@ int fetch_from_buf_control(buf_t *buf, uint16_t *len_out, uint16_t *type_out,
if (len) {
*body_out = tor_malloc(len+1);
memcpy(*body_out, buf->mem+4, len);
body_out[len] = '\0';
(*body_out)[len] = '\0';
} else {
*body_out = NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment