mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-29 18:31:35 +02:00
12 lines
511 B
Diff
12 lines
511 B
Diff
--- a/src/botantools/botan/botan/secmem.h
|
|
+++ b/src/botantools/botan/botan/secmem.h
|
|
@@ -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)
|