Replace RtlNtStatusToDosError(STATUS_NO_MEMORY) with ERROR_OUTOFMEMORY. Modified: trunk/reactos/lib/user32/windows/class.c _____
Modified: trunk/reactos/lib/user32/windows/class.c --- trunk/reactos/lib/user32/windows/class.c 2005-12-12 20:24:20 UTC (rev 20111) +++ trunk/reactos/lib/user32/windows/class.c 2005-12-12 20:25:02 UTC (rev 20112) @@ -41,7 +41,7 @@
if ( !str ) { - SetLastError (RtlNtStatusToDosError(STATUS_NO_MEMORY)); + SetLastError (ERROR_OUTOFMEMORY); return FALSE; } } @@ -69,7 +69,7 @@ str2.Buffer = (PWSTR)HEAP_alloc ( str2.MaximumLength * sizeof(WCHAR) ); if ( !str2.Buffer ) { - SetLastError (RtlNtStatusToDosError(STATUS_NO_MEMORY)); + SetLastError (ERROR_OUTOFMEMORY); if ( !IS_ATOM(str) ) HEAP_free ( str ); return FALSE; @@ -78,7 +78,7 @@ str3.Buffer = (PWSTR)HEAP_alloc ( str3.MaximumLength * sizeof(WCHAR) ); if ( !str3.Buffer ) { - SetLastError (RtlNtStatusToDosError(STATUS_NO_MEMORY)); + SetLastError (ERROR_OUTOFMEMORY); HEAP_free ( str2.Buffer ); if ( !IS_ATOM(str) ) HEAP_free ( str );