Changeset 1496 for trunk/src


Ignore:
Timestamp:
Oct 28, 1999, 8:23:34 PM (26 years ago)
Author:
sandervl
Message:

dll + stippath fixes

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

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

    r1221 r1496  
    1 /* $Id: oslibmisc.cpp,v 1.3 1999-10-09 13:33:24 sandervl Exp $ */
     1/* $Id: oslibmisc.cpp,v 1.4 1999-10-28 18:23:34 sandervl Exp $ */
    22
    33/*
     
    283283  pszFilename = strrchr(path, '\\');                 /* find rightmost slash */
    284284  if (pszFilename != NULL)
    285     return (pszFilename++);              /* return pointer to next character */
     285    return (++pszFilename);              /* return pointer to next character */
    286286 
    287287  pszFilename = strrchr(path, '/');                  /* find rightmost slash */
    288288  if (pszFilename != NULL)
    289     return (pszFilename++);              /* return pointer to next character */
     289    return (++pszFilename);              /* return pointer to next character */
    290290 
    291291  return (path);                                     /* default return value */
  • trunk/src/kernel32/windllpeldr.cpp

    r956 r1496  
    1 /* $Id: windllpeldr.cpp,v 1.1 1999-09-15 23:39:07 sandervl Exp $ */
     1/* $Id: windllpeldr.cpp,v 1.2 1999-10-28 18:23:34 sandervl Exp $ */
    22
    33/*
     
    5959
    6060  strupr(szFileName);
    61   if(!strstr(szFileName, ".DLL")) {
     61  if(!strchr(szFileName, (int)'.')) {
    6262        strcat(szFileName,".DLL");
    6363  }
Note: See TracChangeset for help on using the changeset viewer.