Browse Source

merged a fix in trunk

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/jinmei-dnsrdata2@776 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya 15 years ago
parent
commit
2295e005f7
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;