summaryrefslogtreecommitdiff
path: root/libpqpp/pq-bulkselectcommand.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-04-21 21:32:27 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2023-04-21 21:32:27 +0100
commitcb066d59f5394beb88ac5b92c8a6db51494c9799 (patch)
tree9993d0a9750271d3b33b9e0ab48f22810f3f8b8f /libpqpp/pq-bulkselectcommand.cpp
parentSuppress false warning (diff)
downloadlibdbpp-postgresql-cb066d59f5394beb88ac5b92c8a6db51494c9799.tar.bz2
libdbpp-postgresql-cb066d59f5394beb88ac5b92c8a6db51494c9799.tar.xz
libdbpp-postgresql-cb066d59f5394beb88ac5b92c8a6db51494c9799.zip
Don't use &vector.front() for vector which might be emptylibdbpp-postgresql-1.4.9
Instead just use .data() which safely returns something which might be nullptr, but that's fine.
Diffstat (limited to 'libpqpp/pq-bulkselectcommand.cpp')
-rw-r--r--libpqpp/pq-bulkselectcommand.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpqpp/pq-bulkselectcommand.cpp b/libpqpp/pq-bulkselectcommand.cpp
index 8c9e1f0..298261e 100644
--- a/libpqpp/pq-bulkselectcommand.cpp
+++ b/libpqpp/pq-bulkselectcommand.cpp
@@ -18,8 +18,8 @@ void
PQ::BulkSelectCommand::execute()
{
if (!executed) {
- execRes = c->checkResult(PQexecPrepared(c->conn, prepare(), static_cast<int>(values.size()), &values.front(),
- &lengths.front(), &formats.front(), binary),
+ execRes = c->checkResult(PQexecPrepared(c->conn, prepare(), static_cast<int>(values.size()), values.data(),
+ lengths.data(), formats.data(), binary),
PGRES_TUPLES_OK);
nTuples = static_cast<decltype(nTuples)>(PQntuples(execRes));
tuple = static_cast<decltype(tuple)>(-1);