diff options
author | Adam <Adam@anope.org> | 2011-01-23 12:56:21 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-01-23 12:56:21 -0500 |
commit | 3bfc8e9a39738e6ce60f6cdf1772a120b6bc540a (patch) | |
tree | f9121eef7cee9338381603a1617ce362c6fe1f1a /modules/core/db_plain.cpp | |
parent | a162f1d18e1807a4d6e6fc8bf1535f946d0c6440 (diff) |
std::stringstream::clear doesn't clear it
Diffstat (limited to 'modules/core/db_plain.cpp')
-rw-r--r-- | modules/core/db_plain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/db_plain.cpp b/modules/core/db_plain.cpp index e6c19f063..a7dc85527 100644 --- a/modules/core/db_plain.cpp +++ b/modules/core/db_plain.cpp @@ -1019,7 +1019,7 @@ class DBPlain : public Module } db << db_buffer.str(); - db_buffer.clear(); + db_buffer.str(""); db.close(); |