From 306856457e4490c8d97d80d2cd5f2c5535190181 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Wed, 14 Sep 2011 17:34:07 +0300 Subject: [PATCH] Initialize additional members in constructor for PROPERTY --- include/stg/user_property.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/stg/user_property.h b/include/stg/user_property.h index ade21f4e..822bc0f9 100644 --- a/include/stg/user_property.h +++ b/include/stg/user_property.h @@ -173,7 +173,10 @@ template inline USER_PROPERTY::USER_PROPERTY(varT & val) : value(val), - modificationTime(stgTime) + modificationTime(stgTime), + beforeNotifiers(), + afterNotifiers(), + mutex() { pthread_mutex_init(&mutex, NULL); } -- 2.43.2