mirror of https://github.com/Icinga/icinga2.git
parent
00885f10d0
commit
1c07f5111a
|
@ -40,6 +40,11 @@ struct ReadLineContext
|
||||||
ReadLineContext(void) : Buffer(NULL), Size(0), Eof(false), MustRead(true)
|
ReadLineContext(void) : Buffer(NULL), Size(0), Eof(false), MustRead(true)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
|
~ReadLineContext(void)
|
||||||
|
{
|
||||||
|
free(Buffer);
|
||||||
|
}
|
||||||
|
|
||||||
char *Buffer;
|
char *Buffer;
|
||||||
size_t Size;
|
size_t Size;
|
||||||
bool Eof;
|
bool Eof;
|
||||||
|
|
Loading…
Reference in New Issue