summaryrefslogtreecommitdiff
path: root/bin/win32/BINDInstall
diff options
context:
space:
mode:
authorInternet Software Consortium, Inc <@isc.org>2008-10-21 18:49:41 -0600
committerInternet Software Consortium, Inc <@isc.org>2008-10-21 18:49:41 -0600
commit020439a3c89f1e6c80617c605edeb0427183a1df (patch)
tree8b709e1269019674d029d00793c37c9ca0245fe1 /bin/win32/BINDInstall
parent3ff4f2ccd1b62c92dfbb75ec0b24ea9e68ea2b71 (diff)
downloadbind9-020439a3c89f1e6c80617c605edeb0427183a1df.tar.gz
9.5.1b2
Diffstat (limited to 'bin/win32/BINDInstall')
-rw-r--r--bin/win32/BINDInstall/VersionInfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/win32/BINDInstall/VersionInfo.cpp b/bin/win32/BINDInstall/VersionInfo.cpp
index f5bab198..e940e9e0 100644
--- a/bin/win32/BINDInstall/VersionInfo.cpp
+++ b/bin/win32/BINDInstall/VersionInfo.cpp
@@ -55,7 +55,7 @@ CVersionInfo::CVersionInfo(CString filename)
{
if(m_versionInfo)
{
- delete m_versionInfo;
+ delete [] m_versionInfo;
m_versionInfo = NULL;
}
return;
@@ -68,7 +68,7 @@ CVersionInfo::CVersionInfo(CString filename)
{
if(m_versionInfo)
{
- delete m_versionInfo;
+ delete [] m_versionInfo;
m_versionInfo = NULL;
}
return;
@@ -89,7 +89,7 @@ CVersionInfo::~CVersionInfo()
m_fixedInfo = NULL;
if(m_versionInfo)
{
- delete m_versionInfo;
+ delete [] m_versionInfo;
m_versionInfo = NULL;
}
}