blob: 5297ecb9b28f8e1973656330d2ad918aa0440f17 (
plain)
1 --- ./src/botantools/botan/botan/secmem.h.orig 2012-01-07 20:09:35.427999593 +0100
2 +++ ./src/botantools/botan/botan/secmem.h 2012-01-07 20:09:52.540001422 +0100
3 @@ -214,11 +214,11 @@
4
5 SecureVector(u32bit n = 0) { MemoryRegion<T>::init(true, n); }
6 SecureVector(const T in[], u32bit n)
7 - { MemoryRegion<T>::init(true); set(in, n); }
8 + { MemoryRegion<T>::init(true); this->set(in, n); }
9 SecureVector(const MemoryRegion<T>& in)
10 - { MemoryRegion<T>::init(true); set(in); }
11 + { MemoryRegion<T>::init(true); this->set(in); }
12 SecureVector(const MemoryRegion<T>& in1, const MemoryRegion<T>& in2)
13 - { MemoryRegion<T>::init(true); set(in1); append(in2); }
14 + { MemoryRegion<T>::init(true); this->set(in1); append(in2); }
15 };
16
17 /*************************************************
|