Fix uninitialized fields

Coverity Bug ID: 1272331
This commit is contained in:
Gunnar Beutner 2015-03-02 09:46:41 +01:00
parent f1509d2f10
commit b4be584679
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ struct SocketEventDescriptor
Object *LifesupportObject; Object *LifesupportObject;
SocketEventDescriptor(void) SocketEventDescriptor(void)
: Events(0) : Events(0), EventInterface(NULL), LifesupportObject(NULL)
{ } { }
}; };