Ignore:
Timestamp:
Nov 6, 2000, 11:21:36 AM (25 years ago)
Author:
sandervl
Message:

MN: GetFullPathNameW fix

File:
1 edited

Legend:

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

    r4534 r4562  
    1 /* $Id: Fileio.cpp,v 1.44 2000-10-26 17:21:38 sandervl Exp $ */
     1/* $Id: Fileio.cpp,v 1.45 2000-11-06 10:21:36 sandervl Exp $ */
    22
    33/*
     
    706706                   lpBuffer);
    707707
    708   if(lpFilePart)
    709     *lpFilePart = lpBuffer + ((int)asciipart - (int)asciibuffer);
     708  if(lpFilePart) {
     709    if (asciipart == NULL)
     710      *lpFilePart = NULL;
     711    else
     712      *lpFilePart = lpBuffer + ((int)asciipart - (int)asciibuffer);
     713  }
    710714
    711715  FreeAsciiString(astring);
Note: See TracChangeset for help on using the changeset viewer.