From b9f26488d5534b9aad186601a9d10e92c8e19d41 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Sun, 19 Jan 2014 05:03:06 -0700 Subject: [PATCH] Added missing this-> --- .../src/shared/core/DbBindableBitArray.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/shared/library/sharedDatabaseInterface/src/shared/core/DbBindableBitArray.h b/engine/shared/library/sharedDatabaseInterface/src/shared/core/DbBindableBitArray.h index a53dc71f..5c0eed33 100644 --- a/engine/shared/library/sharedDatabaseInterface/src/shared/core/DbBindableBitArray.h +++ b/engine/shared/library/sharedDatabaseInterface/src/shared/core/DbBindableBitArray.h @@ -99,9 +99,9 @@ namespace DB { BitArray temp; // indicator is the number of chars read from the database - if (indicator > 0) + if (this->indicator > 0) { - buf[indicator] = 0; + buf[this->indicator] = 0; temp.setFromDbTextString(buf); }