Browse Source

fixed an obvious error in assignment
(fixed in trunk, this will get reviewed in the next cycle of branching)


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@775 e5f2f494-b856-4b98-b285-d166d9295462

JINMEI Tatuya 15 years ago
parent
commit
bde6077141
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/cpp/rdata/generic/rrsig_46.cc

+ 1 - 1
src/lib/dns/cpp/rdata/generic/rrsig_46.cc

@@ -124,7 +124,7 @@ RRSIG::operator=(const RRSIG& source)
         return (*this);
     }
 
-    RRSIGImpl* newimpl = new RRSIGImpl(*impl_);
+    RRSIGImpl* newimpl = new RRSIGImpl(*source.impl_);
     delete impl_;
     impl_ = newimpl;