summaryrefslogtreecommitdiff
path: root/support.cc
diff options
context:
space:
mode:
Diffstat (limited to 'support.cc')
-rw-r--r--support.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/support.cc b/support.cc
index 56a2dd3..f179c2f 100644
--- a/support.cc
+++ b/support.cc
@@ -234,12 +234,12 @@ void ReverseBytes(void* theValue, int numBytes) {
char* tempValue = NULL;
int i;
- tempValue = (char*) malloc(numBytes);
+ tempValue = new char [numBytes];
if (tempValue != NULL) {
memcpy(tempValue, theValue, numBytes);
for (i = 0; i < numBytes; i++)
((char*) theValue)[i] = tempValue[numBytes - i - 1];
- free(tempValue);
+ delete[] tempValue;
} // if
} // ReverseBytes()