13 lines
711 B
Diff
13 lines
711 B
Diff
diff -Nru qca-2.0.3.orig/src/botantools/botan/botan/secmem.h qca-2.0.3/src/botantools/botan/botan/secmem.h
|
|
--- qca-2.0.3.orig/src/botantools/botan/botan/secmem.h 2007-04-19 23:26:13.000000000 +0200
|
|
+++ qca-2.0.3/src/botantools/botan/botan/secmem.h 2013-01-24 11:44:22.356084926 +0100
|
|
@@ -214,7 +214,7 @@
|
|
|
|
SecureVector(u32bit n = 0) { MemoryRegion<T>::init(true, n); }
|
|
SecureVector(const T in[], u32bit n)
|
|
- { MemoryRegion<T>::init(true); set(in, n); }
|
|
+ { MemoryRegion<T>::init(true); this->set(in, n); }
|
|
SecureVector(const MemoryRegion<T>& in)
|
|
{ MemoryRegion<T>::init(true); set(in); }
|
|
SecureVector(const MemoryRegion<T>& in1, const MemoryRegion<T>& in2)
|