]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Initialize d_result to NULL on ctor 857/head
authorAki Tuomi <cmouse@desteem.org>
Mon, 10 Jun 2013 12:49:15 +0000 (15:49 +0300)
committerAki Tuomi <cmouse@desteem.org>
Mon, 10 Jun 2013 12:49:15 +0000 (15:49 +0300)
modules/remotebackend/remotebackend.cc

index e81a6f3c8553f34f5fb6f775adae95f102e739d8..7d6306d2c3557d0357a10ea207cc5492c00a345e 100644 (file)
@@ -50,6 +50,7 @@ RemoteBackend::RemoteBackend(const std::string &suffix)
 {
       setArgPrefix("remote"+suffix);
       build(getArg("connection-string"));
+      this->d_result = NULL;
       this->d_dnssec = mustDo("dnssec");
       this->d_index = -1;
       this->d_trxid = 0;