Changeset 4440 for trunk/src/kernel32/winimagebase.cpp
- Timestamp:
- Oct 6, 2000, 1:04:02 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagebase.cpp
r4279 r4440 1 /* $Id: winimagebase.cpp,v 1.2 7 2000-09-18 19:26:16sandervl Exp $ */1 /* $Id: winimagebase.cpp,v 1.28 2000-10-06 11:04:02 sandervl Exp $ */ 2 2 3 3 /* … … 85 85 void Win32ImageBase::setFullPath(char *name) 86 86 { 87 dassert(name, ("setFullPath, name == NULL")); 87 if(fullpath) 88 free(fullpath); 88 89 fullpath = (char *)malloc(strlen(name)+1); 89 dassert(fullpath, ("setFullPath, fullpath == NULL"));90 90 strcpy(fullpath, name); 91 91 }
Note:
See TracChangeset
for help on using the changeset viewer.