- Update to 10.0.21 - Updates mariadb100-client as well (slave-port) - Silence portlint - Re-roll patches with makepatch [1] https://mariadb.atlassian.net/browse/MDEV-7398 [2] https://mariadb.atlassian.net/browse/MDEV-8128 Changes: https://mariadb.com/kb/en/mariadb/mariadb-10021-changelog/ Differential revision: https://reviews.freebsd.org/D2771 Reviewed by: koobs (mentor), vsevolod (mentor) Approved by: vsevolod (mentor) PR: 200097 Security: 36bd352d-299b-11e5-86ff-14dae9d210b8 MFH: 2015Q3
11 lines
428 B
C++
11 lines
428 B
C++
--- extra/yassl/taocrypt/src/integer.cpp.orig 2015-06-17 14:54:11 UTC
|
|
+++ extra/yassl/taocrypt/src/integer.cpp
|
|
@@ -74,7 +74,7 @@ template <class T>
|
|
CPP_TYPENAME AlignedAllocator<T>::pointer AlignedAllocator<T>::allocate(
|
|
size_type n, const void *)
|
|
{
|
|
- if (n > this->max_size())
|
|
+ if (n > AlignedAllocator<T>::max_size())
|
|
return 0;
|
|
if (n == 0)
|
|
return 0;
|