From 6499f4e4d50ca6125cf49fd4e1a36bc2114903d1 Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 9 Nov 2000 00:31:11 +0000 Subject: [PATCH] *** empty log message *** --- panda/src/downloader/crypto_utils.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/downloader/crypto_utils.cxx b/panda/src/downloader/crypto_utils.cxx index b3a52659c2..4255c427ee 100644 --- a/panda/src/downloader/crypto_utils.cxx +++ b/panda/src/downloader/crypto_utils.cxx @@ -59,6 +59,6 @@ md5_a_buffer(unsigned char* buf, unsigned long len, HashVal& ret) { ret[1] = (outb[4] << 24) | (outb[5] << 16) | (outb[6] << 8) | outb[7]; ret[2] = (outb[8] << 24) | (outb[9] << 16) | (outb[10] << 8) | outb[11]; ret[3] = (outb[12] << 24) | (outb[13] << 16) | (outb[14] << 8) | outb[15]; - delete outb; + delete[] outb; }