aboutsummaryrefslogtreecommitdiff
path: root/src/feature/control
diff options
context:
space:
mode:
authorrl1987 <rl1987@users.noreply.github.com>2020-05-21 14:17:15 +0300
committerrl1987 <rl1987@users.noreply.github.com>2020-05-21 14:17:15 +0300
commita5d28bf88f839c21fbefde8391d777fd9610abd3 (patch)
tree0d136fa3df36dba4cfdd230c0cb1b1d98456a0bd /src/feature/control
parentded99992b831bfff782a3b3c612297a4634d3d88 (diff)
downloadtor-a5d28bf88f839c21fbefde8391d777fd9610abd3.tar.gz
tor-a5d28bf88f839c21fbefde8391d777fd9610abd3.zip
Check for NULL from tor_dup_ip()
Diffstat (limited to 'src/feature/control')
-rw-r--r--src/feature/control/control_getinfo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/feature/control/control_getinfo.c b/src/feature/control/control_getinfo.c
index 685deb8ecc..3605c23dcd 100644
--- a/src/feature/control/control_getinfo.c
+++ b/src/feature/control/control_getinfo.c
@@ -137,6 +137,7 @@ getinfo_helper_misc(control_connection_t *conn, const char *question,
return -1;
}
*answer = tor_dup_ip(addr);
+ tor_assert_nonfatal(*answer);
} else if (!strcmp(question, "traffic/read")) {
tor_asprintf(answer, "%"PRIu64, (get_bytes_read()));
} else if (!strcmp(question, "traffic/written")) {