<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- src/botantools/botan/botan/secmem.h.orig	2012-09-26 21:16:22.000000000 -0400
+++ src/botantools/botan/botan/secmem.h	2012-09-26 21:16:38.000000000 -0400
@@ -214,7 +214,7 @@
 
       SecureVector(u32bit n = 0) { MemoryRegion&lt;T&gt;::init(true, n); }
       SecureVector(const T in[], u32bit n)
-         { MemoryRegion&lt;T&gt;::init(true); set(in, n); }
+	 { MemoryRegion&lt;T&gt;::init(true); MemoryRegion&lt;T&gt;::set(in, n); }
       SecureVector(const MemoryRegion&lt;T&gt;&amp; in)
          { MemoryRegion&lt;T&gt;::init(true); set(in); }
       SecureVector(const MemoryRegion&lt;T&gt;&amp; in1, const MemoryRegion&lt;T&gt;&amp; in2)
</pre></body></html>