summaryrefslogtreecommitdiff
path: root/src/utils/mkdir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/mkdir.cpp')
-rw-r--r--src/utils/mkdir.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/mkdir.cpp b/src/utils/mkdir.cpp
index f0cc65f53..4ab9f7d61 100644
--- a/src/utils/mkdir.cpp
+++ b/src/utils/mkdir.cpp
@@ -80,7 +80,7 @@ int mkdir_r(const char *pathname)
}
else
{
- delete tmp;
+ delete []tmp;
return -1;
}
}
@@ -97,7 +97,7 @@ int mkdir_r(const char *pathname)
if (!(strlen(tmp) == 2 &&
!strcmp(tmp + 1, ":")))
#endif
- delete tmp;
+ delete []tmp;
return -1;
}
@@ -107,7 +107,7 @@ int mkdir_r(const char *pathname)
*p = '/';
}
}
- delete tmp;
+ delete []tmp;
return 0;
}