From bfe43ecdff681f0b4395841a33a2721f8f8a983b Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Wed, 25 May 2011 14:36:32 +0300 Subject: [PATCH] Members initialization order fixed in PostgreSQL storage plugin --- .../stargazer/plugins/store/postgresql/postgresql_store.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp b/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp index 4bf72c0e..2210c951 100644 --- a/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp +++ b/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp @@ -78,8 +78,8 @@ POSTGRESQL_STORE::POSTGRESQL_STORE() user("stg"), password("123456"), version(0), - connection(NULL), - retries(3) + retries(3), + connection(NULL) { pthread_mutex_init(&mutex, NULL); } -- 2.43.2