Changeset 1811

Show
Ignore:
Timestamp:
06/09/2007 22:16:08 (16 months ago)
Author:
chris
Message:

Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • box/chris/general/bin/bbackupd/BackupDaemon.cpp

    r1807 r1811  
    18221822                catch (std::exception &e) 
    18231823                { 
    1824                         delete ploc; 
    1825                         ploc = 0; 
    18261824                        BOX_ERROR("Failed to configure location '" 
    18271825                                << ploc->mName << "' path '" 
    18281826                                << ploc->mPath << "': " << e.what() << 
    18291827                                ": please check for previous errors"); 
     1828                        delete ploc; 
     1829                        ploc = 0; 
    18301830                        throw; 
    18311831                }