Changeset 4476 in vbox for trunk/src/VBox/Runtime/generic
- Timestamp:
- Sep 1, 2007 1:30:34 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 24075
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/env-generic.cpp
r4475 r4476 31 31 #if !defined(RT_OS_WINDOWS) 32 32 # include <unistd.h> 33 #endif 34 #ifdef RT_OS_DARWIN 35 # include <crt_externs.h> 33 36 #endif 34 37 #if defined(RT_OS_SOLARIS) … … 290 293 { 291 294 AssertPtrReturn(pszVar, VERR_INVALID_POINTER); 292 Assert PtrReturn(*pszVar, VERR_INVALID_PARAMETER);295 AssertReturn(*pszVar, VERR_INVALID_PARAMETER); 293 296 AssertPtrReturn(pszValue, VERR_INVALID_POINTER); 294 297 … … 395 398 { 396 399 AssertPtrReturn(pszVar, VERR_INVALID_POINTER); 397 Assert PtrReturn(*pszVar, VERR_INVALID_PARAMETER);400 AssertReturn(*pszVar, VERR_INVALID_PARAMETER); 398 401 399 402 int rc;
Note:
See TracChangeset
for help on using the changeset viewer.