summaryrefslogtreecommitdiffstats
path: root/bin/tools/dnstap-read.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/tools/dnstap-read.c')
-rw-r--r--bin/tools/dnstap-read.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/tools/dnstap-read.c b/bin/tools/dnstap-read.c
index f6abeeb..06dd561 100644
--- a/bin/tools/dnstap-read.c
+++ b/bin/tools/dnstap-read.c
@@ -327,7 +327,6 @@ int
main(int argc, char *argv[]) {
isc_result_t result;
dns_message_t *message = NULL;
- isc_buffer_t *b = NULL;
dns_dtdata_t *dt = NULL;
dns_dthandle_t *handle = NULL;
int rv = 0, ch;
@@ -380,17 +379,8 @@ main(int argc, char *argv[]) {
input.base = data;
input.length = datalen;
- if (b != NULL) {
- isc_buffer_free(&b);
- }
- isc_buffer_allocate(mctx, &b, 2048);
- if (b == NULL) {
- fatal("out of memory");
- }
-
result = dns_dt_parse(mctx, &input, &dt);
if (result != ISC_R_SUCCESS) {
- isc_buffer_free(&b);
continue;
}
@@ -419,9 +409,6 @@ cleanup:
if (message != NULL) {
dns_message_detach(&message);
}
- if (b != NULL) {
- isc_buffer_free(&b);
- }
isc_mem_destroy(&mctx);
exit(rv);