mirror of
https://github.com/upx/upx.git
synced 2025-08-11 22:52:30 +08:00
Cosmetic cleanup.
This commit is contained in:
@ -64,7 +64,7 @@
|
||||
PackMaster::PackMaster(InputFile *f, options_t *o) :
|
||||
fi(f), p(NULL)
|
||||
{
|
||||
// replace options with local options
|
||||
// replace global options with local options
|
||||
saved_opt = o;
|
||||
if (o)
|
||||
{
|
||||
@ -79,7 +79,7 @@ PackMaster::~PackMaster()
|
||||
{
|
||||
fi = NULL;
|
||||
delete p; p = NULL;
|
||||
// restore options
|
||||
// restore global options
|
||||
if (saved_opt)
|
||||
opt = saved_opt;
|
||||
saved_opt = NULL;
|
||||
|
@ -41,7 +41,7 @@ class OutputFile;
|
||||
class PackMaster
|
||||
{
|
||||
public:
|
||||
PackMaster(InputFile *f, options_t *o = NULL);
|
||||
PackMaster(InputFile *f, options_t *o=NULL);
|
||||
virtual ~PackMaster();
|
||||
|
||||
void pack(OutputFile *fo);
|
||||
|
Reference in New Issue
Block a user