Changeset 3625 for trunk/src/kernel32/winimagebase.cpp
- Timestamp:
- May 28, 2000, 6:45:14 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagebase.cpp
r3609 r3625 1 /* $Id: winimagebase.cpp,v 1.2 0 2000-05-26 18:42:56sandervl Exp $ */1 /* $Id: winimagebase.cpp,v 1.21 2000-05-28 16:45:12 sandervl Exp $ */ 2 2 3 3 /* … … 32 32 #include <pefile.h> 33 33 #include <unicode.h> 34 #include <winres.h>35 34 #include "oslibmisc.h" 36 35 #include "oslibdos.h" … … 47 46 errorState(NO_ERROR), entryPoint(0), fullpath(NULL), 48 47 tlsAddress(0), tlsIndexAddr(0), tlsInitSize(0), tlsTotalSize(0), 49 tlsCallBackAddr(0), tlsIndex(-1), winres(NULL),pResDir(NULL),48 tlsCallBackAddr(0), tlsIndex(-1), pResDir(NULL), 50 49 ulRVAResourceSection(0) 51 50 { … … 78 77 Win32ImageBase::~Win32ImageBase() 79 78 { 80 Win32Resource *res;81 82 while(winres)83 {84 res = winres->next;85 delete(winres);86 winres = res;87 }88 79 if(fullpath) 89 80 free(fullpath);
Note:
See TracChangeset
for help on using the changeset viewer.