Changeset 3547 for trunk/src


Ignore:
Timestamp:
May 18, 2000, 11:08:38 AM (25 years ago)
Author:
sandervl
Message:

exception + enumresourcenamesa fix

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/exceptions.cpp

    r3483 r3547  
    1 /* $Id: exceptions.cpp,v 1.40 2000-05-02 20:53:12 sandervl Exp $ */
     1/* $Id: exceptions.cpp,v 1.41 2000-05-18 09:08:37 sandervl Exp $ */
    22
    33/*
     
    936936                                   PVOID                        p)
    937937{
     938  //SvL: Check if exception inside debug fprintf -> if so, clear lock so
     939  //     next dprintf won't wait forever
     940  CheckLogException();
     941
    938942  /* Access violation at a known location */
    939943  switch(pERepRec->ExceptionNum)
     
    10471051  case XCPT_IN_PAGE_ERROR:
    10481052CrashAndBurn:
    1049         CheckLogException();
    10501053#ifdef DEBUG
    10511054        dprintfException(pERepRec, pERegRec, pCtxRec, p);
  • trunk/src/kernel32/winimgres.cpp

    r3501 r3547  
    1 /* $Id: winimgres.cpp,v 1.35 2000-05-09 18:56:10 sandervl Exp $ */
     1/* $Id: winimgres.cpp,v 1.36 2000-05-18 09:08:38 sandervl Exp $ */
    22
    33/*
     
    490490                    pszASCII = (char*)pszTmp;
    491491                }
    492                 UnicodeToAsciiN(pResDirString->NameString, pszASCII, pResDirString->Length);
     492                lstrcpynWtoA(pszASCII, pResDirString->NameString, pResDirString->Length+1);
    493493                lpszName = pszASCII;
    494494            }
Note: See TracChangeset for help on using the changeset viewer.