1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Use NULL instead of 0.

committer: mfx <mfx> 1042580552 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2003-01-14 21:42:32 +00:00
parent 03fb0d95c6
commit 42575d9f57

View File

@ -214,7 +214,7 @@ public:
unsigned ivnum; unsigned ivnum;
Interval(void *b) : capacity(0),base(b),ivarr(0),ivnum(0) {} Interval(void *b) : capacity(0),base(b),ivarr(NULL),ivnum(0) {}
~Interval() {free(ivarr);} ~Interval() {free(ivarr);}
void add(unsigned start,unsigned len); void add(unsigned start,unsigned len);