summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-02-11 11:08:25 +0000
committerrandomdan <randomdan@localhost>2011-02-11 11:08:25 +0000
commit85e4f209cfc3cf374987d9e206e6eda97d4b8bf4 (patch)
tree41bb98f57284bfd61ede9812c603e4ad4b0af158
parentFix the build system to do dependencies properly (diff)
downloadlibdbpp-postgresql-85e4f209cfc3cf374987d9e206e6eda97d4b8bf4.tar.bz2
libdbpp-postgresql-85e4f209cfc3cf374987d9e206e6eda97d4b8bf4.tar.xz
libdbpp-postgresql-85e4f209cfc3cf374987d9e206e6eda97d4b8bf4.zip
Fix buffer size to hold a complete date/time
-rw-r--r--libpqpp/command.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpqpp/command.cpp b/libpqpp/command.cpp
index 28d4f24..be766c9 100644
--- a/libpqpp/command.cpp
+++ b/libpqpp/command.cpp
@@ -129,9 +129,9 @@ void
PQ::Command::bindParamT(unsigned int n, const tm * v)
{
paramsAtLeast(n);
- values[n] = static_cast<char *>(malloc(19));
+ values[n] = static_cast<char *>(malloc(20));
formats[n] = 0;
- strftime(values[n], 19, "%F %T", v);
+ strftime(values[n], 20, "%F %T", v);
lengths[n] = 19;
}
void