Ignore:
Timestamp:
May 28, 2000, 6:45:14 PM (25 years ago)
Author:
sandervl
Message:

resource handling changes

File:
1 edited

Legend:

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

    r3609 r3625  
    1 /* $Id: winimagebase.cpp,v 1.20 2000-05-26 18:42:56 sandervl Exp $ */
     1/* $Id: winimagebase.cpp,v 1.21 2000-05-28 16:45:12 sandervl Exp $ */
    22
    33/*
     
    3232#include <pefile.h>
    3333#include <unicode.h>
    34 #include <winres.h>
    3534#include "oslibmisc.h"
    3635#include "oslibdos.h"
     
    4746    errorState(NO_ERROR), entryPoint(0), fullpath(NULL),
    4847    tlsAddress(0), tlsIndexAddr(0), tlsInitSize(0), tlsTotalSize(0),
    49     tlsCallBackAddr(0), tlsIndex(-1), winres(NULL), pResDir(NULL),
     48    tlsCallBackAddr(0), tlsIndex(-1), pResDir(NULL),
    5049    ulRVAResourceSection(0)
    5150{
     
    7877Win32ImageBase::~Win32ImageBase()
    7978{
    80  Win32Resource *res;
    81 
    82   while(winres)
    83   {
    84         res    = winres->next;
    85         delete(winres);
    86         winres = res;
    87   }
    8879  if(fullpath)
    8980        free(fullpath);
Note: See TracChangeset for help on using the changeset viewer.