From 2502a568e77358ecafd4356dc6eaaaa7ca751be2 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Sat, 26 Oct 2013 20:36:17 +1100 Subject: [PATCH] use smaller buffers --- lib/dns/tests/rdata_test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/dns/tests/rdata_test.c b/lib/dns/tests/rdata_test.c index 747ef4bb8c..1c866de4a7 100644 --- a/lib/dns/tests/rdata_test.c +++ b/lib/dns/tests/rdata_test.c @@ -258,8 +258,8 @@ ATF_TC_BODY(wks, tc) { { 0x00 }, 0, ISC_FALSE } }; - unsigned char buf1[1024*1024]; - unsigned char buf2[1024*1024]; + unsigned char buf1[1024]; + unsigned char buf2[1024]; isc_buffer_t source, target1, target2; dns_rdata_t rdata; dns_decompress_t dctx; @@ -332,8 +332,8 @@ ATF_TC_BODY(isdn, tc) { { 0x00 }, 0, ISC_FALSE } }; - unsigned char buf1[1024*1024]; - unsigned char buf2[1024*1024]; + unsigned char buf1[1024]; + unsigned char buf2[1024]; isc_buffer_t source, target1, target2; dns_rdata_t rdata; dns_decompress_t dctx;