From 1a582feb709c03627aec9d97b6f32818a14a0bf0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Fri, 25 Mar 2011 10:07:54 +0000 Subject: [PATCH] More descriptive blob destructor comment. --- trace_model.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trace_model.cpp b/trace_model.cpp index 70039c6..df7d8c8 100644 --- a/trace_model.cpp +++ b/trace_model.cpp @@ -56,7 +56,8 @@ Array::~Array() { } Blob::~Blob() { - // FIXME + // TODO: Don't leak blobs. Blobs are often bound and accessed during many + // calls, so we can't delete them here. //delete [] buf; } -- 2.45.2