summaryrefslogtreecommitdiff
path: root/wince/perlhost.h
diff options
context:
space:
mode:
Diffstat (limited to 'wince/perlhost.h')
-rw-r--r--wince/perlhost.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wince/perlhost.h b/wince/perlhost.h
index a71f108e7a..2359464290 100644
--- a/wince/perlhost.h
+++ b/wince/perlhost.h
@@ -2228,7 +2228,7 @@ CPerlHost::GetChildDir(void)
dTHX;
int length;
char* ptr;
- New(0, ptr, MAX_PATH+1, char);
+ Newx(ptr, MAX_PATH+1, char);
if(ptr) {
m_pvDir->GetCurrentDirectoryA(MAX_PATH+1, ptr);
length = strlen(ptr);
@@ -2275,7 +2275,7 @@ CPerlHost::CreateLocalEnvironmentStrings(VDir &vDir)
// add the additional space used by changes made to the environment
dwSize += CalculateEnvironmentSpace();
- New(1, lpStr, dwSize, char);
+ Newx(lpStr, dwSize, char);
lpPtr = lpStr;
if(lpStr != NULL) {
// build the local environment