BIND 10 trac2521, updated. 5045f86bbd1c7ffaf07c95f7c6ce4d64b1e1c467 [2521] minor simplification: initialize mem var in the list when possible.
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri May 3 23:54:36 UTC 2013
The branch, trac2521 has been updated
via 5045f86bbd1c7ffaf07c95f7c6ce4d64b1e1c467 (commit)
from 94d255e2f177399d659e53ae06d622f2576b7e4c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5045f86bbd1c7ffaf07c95f7c6ce4d64b1e1c467
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri May 3 16:54:00 2013 -0700
[2521] minor simplification: initialize mem var in the list when possible.
not a big deal in this case, but it's more concise.
-----------------------------------------------------------------------
Summary of changes:
src/lib/dns/rdata/generic/rrsig_46.cc | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dns/rdata/generic/rrsig_46.cc b/src/lib/dns/rdata/generic/rrsig_46.cc
index 1b71808..549b3cf 100644
--- a/src/lib/dns/rdata/generic/rrsig_46.cc
+++ b/src/lib/dns/rdata/generic/rrsig_46.cc
@@ -190,9 +190,8 @@ RRSIG::RRSIG(const std::string& rrsig_str) :
/// it is non absolute.
RRSIG::RRSIG(MasterLexer& lexer, const Name* origin,
MasterLoader::Options, MasterLoaderCallbacks&) :
- impl_(NULL)
+ impl_(constructFromLexer(lexer, origin))
{
- impl_ = constructFromLexer(lexer, origin);
}
RRSIG::RRSIG(InputBuffer& buffer, size_t rdata_len) {
More information about the bind10-changes
mailing list