8140663: FrameValue might be used uninitialized

Add a constructor

Reviewed-by: sspitsyn, jwilhelm
This commit is contained in:
Dmitry Samersoff 2015-10-28 21:47:31 +03:00
parent 86cf323c41
commit cf5f478f5d

@ -442,6 +442,14 @@ class FrameValue VALUE_OBJ_CLASS_SPEC {
char* description;
int owner;
int priority;
FrameValue() {
location = NULL;
description = NULL;
owner = -1;
priority = 0;
}
};