diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-10-27 13:22:55 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-10-27 13:22:55 +0200 |
commit | 23e2378ec92457368d59ab3837d828545c1de31f (patch) | |
tree | c6e7320581f294bac902848f9af84cf55027854f /common | |
parent | 5a6e85d92fa0f46a329ea8603e150c7e8da4097f (diff) |
Dereference nullable
Diffstat (limited to 'common')
-rw-r--r-- | common/query/driver.cxx | 2 |
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 |