Bug fix (needed for libcwd with memory allocation debugging)

This commit is contained in:
Aleric Inglewood
2012-08-13 21:59:57 +02:00
parent 169670a58b
commit 35a53ef1d7

View File

@@ -123,7 +123,7 @@ namespace
{
public:
RawInjector(const U8* data, S32 size) : mData(data), mSize(size) {}
virtual ~RawInjector() {delete mData;}
virtual ~RawInjector() {delete [] mData;}
const char* contentType() { return "application/octet-stream"; }