[svn] commit: r775 - /trunk/src/lib/dns/cpp/rdata/generic/rrsig_46.cc
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Feb 10 03:52:29 UTC 2010
Author: jinmei
Date: Wed Feb 10 03:52:29 2010
New Revision: 775
Log:
fixed an obvious error in assignment
(fixed in trunk, this will get reviewed in the next cycle of branching)
Modified:
trunk/src/lib/dns/cpp/rdata/generic/rrsig_46.cc
Modified: trunk/src/lib/dns/cpp/rdata/generic/rrsig_46.cc
==============================================================================
--- trunk/src/lib/dns/cpp/rdata/generic/rrsig_46.cc (original)
+++ trunk/src/lib/dns/cpp/rdata/generic/rrsig_46.cc Wed Feb 10 03:52:29 2010
@@ -124,7 +124,7 @@
return (*this);
}
- RRSIGImpl* newimpl = new RRSIGImpl(*impl_);
+ RRSIGImpl* newimpl = new RRSIGImpl(*source.impl_);
delete impl_;
impl_ = newimpl;
More information about the bind10-changes
mailing list