Lib: initialize field in constructor

fixes CID 27976 found by Coverity
This commit is contained in:
Christian Beer 2015-11-04 13:21:37 +01:00
parent 482a2a5689
commit 317460e4f8
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@
MFILE::MFILE() {
buf = (char*)malloc(64*1024);
len = 0;
f = NULL;
}
MFILE::~MFILE() {