mirror of https://github.com/nodejs/node.git
cygwin: fix new[]/delete mismatch
parent
6ee676c0e4
commit
d91f64fcbb
|
@ -94,7 +94,7 @@ void Platform::SetProcessTitle(char *title) {
|
||||||
length = MultiByteToWideChar(CP_UTF8, 0, title, -1, title_w, length);
|
length = MultiByteToWideChar(CP_UTF8, 0, title, -1, title_w, length);
|
||||||
if (!length) {
|
if (!length) {
|
||||||
_winapi_perror("MultiByteToWideChar");
|
_winapi_perror("MultiByteToWideChar");
|
||||||
delete title_w;
|
delete[] title_w;
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ void Platform::SetProcessTitle(char *title) {
|
||||||
free(process_title);
|
free(process_title);
|
||||||
process_title = strdup(title);
|
process_title = strdup(title);
|
||||||
|
|
||||||
delete title_w;
|
delete[] title_w;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue