summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/configreader.h26
-rw-r--r--src/config.c12
2 files changed, 30 insertions, 8 deletions
diff --git a/include/configreader.h b/include/configreader.h
index 2a40fd8ef..222195727 100644
--- a/include/configreader.h
+++ b/include/configreader.h
@@ -119,6 +119,32 @@ template<typename T> class ValueContainer : public ValueContainerBase
}
};
+/** This a specific version of ValueContainer to handle character arrays specially
+ */
+template<> class ValueContainer<char **> : public ValueContainerBase
+{
+ /** Contained item */
+ char **val;
+ public:
+ /** Initialize with nothing */
+ ValueContainer() : ValueContainerBase(), val(NULL) { }
+ /** Initialize with a value of type T */
+ ValueContainer(char **Val) : ValueContainerBase(), val(Val) { }
+ /** Initialize with a copy */
+ ValueContainer(const ValueContainer &Val) : ValueContainerBase(), val(Val.val) { }
+ ValueContainer &operator=(const ValueContainer &Val)
+ {
+ val = Val.val;
+ return *this;
+ }
+ /** Change value to type T of size s */
+ void Set(const char *newval, size_t s)
+ {
+ *val = new char[s];
+ strlcpy(*val, newval, s);
+ }
+};
+
/** This a specific version of ValueContainer to handle std::string specially
*/
template<> class ValueContainer<std::string *> : public ValueContainerBase
diff --git a/src/config.c b/src/config.c
index 536a0d2f3..ddced7ed9 100644
--- a/src/config.c
+++ b/src/config.c
@@ -596,29 +596,25 @@ int ServerConfig::Read(bool bail)
case DT_NOSPACES: {
ValueContainerChar *vcc = dynamic_cast<ValueContainerChar *>(Values[Index].val);
ValidateNoSpaces(vi.GetString(), Values[Index].tag, Values[Index].value);
- char *tmp = vi.GetString();
- vcc->Set(&tmp, strlen(vi.GetString()) + 1);
+ vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
}
break;
case DT_HOSTNAME: {
ValueContainerChar *vcc = dynamic_cast<ValueContainerChar *>(Values[Index].val);
ValidateHostname(vi.GetString(), Values[Index].tag, Values[Index].value);
- char *tmp = vi.GetString();
- vcc->Set(&tmp, strlen(vi.GetString()) + 1);
+ vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
}
break;
case DT_IPADDRESS: {
ValueContainerChar *vcc = dynamic_cast<ValueContainerChar *>(Values[Index].val);
ValidateIP(vi.GetString(), Values[Index].tag, Values[Index].value, allow_wild);
- char *tmp = vi.GetString();
- vcc->Set(&tmp, strlen(vi.GetString()) + 1);
+ vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
}
break;
case DT_CHARPTR: {
ValueContainerChar *vcc = dynamic_cast<ValueContainerChar *>(Values[Index].val);
// Make sure we also copy the null terminator
- char *tmp = vi.GetString();
- vcc->Set(&tmp, strlen(vi.GetString()) + 1);
+ vcc->Set(vi.GetString(), strlen(vi.GetString()) + 1);
}
break;
case DT_STRING: {