PR: 193539 Submitted by: spil.oss (gmail) MariaDB is a database server that offers drop-in replacement functionality for MySQL. MariaDB is built by some of the original authors of MySQL, with assistance from the broader community of Free and open source software developers. In addition to the core functionality of MySQL, MariaDB offers a rich set of feature enhancements including alternate storage engines, server optimizations, and patches.
11 lines
457 B
C++
11 lines
457 B
C++
--- extra/yassl/taocrypt/src/integer.cpp.orig 2014-04-15 14:02:39.000000000 +0300
|
|
+++ extra/yassl/taocrypt/src/integer.cpp 2014-05-16 17:00:15.000000000 +0300
|
|
@@ -75,7 +75,7 @@
|
|
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;
|