aboutsummaryrefslogtreecommitdiff
path: root/common/query
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-10-27 13:22:55 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-10-27 13:22:55 +0200
commit23e2378ec92457368d59ab3837d828545c1de31f (patch)
treec6e7320581f294bac902848f9af84cf55027854f /common/query
parent5a6e85d92fa0f46a329ea8603e150c7e8da4097f (diff)
Dereference nullable
Diffstat (limited to 'common/query')
-rw-r--r--common/query/driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/query/driver.cxx b/common/query/driver.cxx
index 6d41297..db95a85 100644
--- a/common/query/driver.cxx
+++ b/common/query/driver.cxx
@@ -458,7 +458,7 @@ main (int argc, char* argv[])
i = r.begin ();
assert (i != r.end ());
- assert (i->public_key_ == key2);
+ assert (*i->public_key_ == key2);
assert (++i == r.end ());
#endif