1
0
Fork 0
This commit is contained in:
jsteemann 2016-05-23 18:01:00 +02:00
parent ebb0840dd5
commit 730fdfb4dd
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
v3.0.0 (XXXX-XX-XX) v3.0.0 (XXXX-XX-XX)
------------------- -------------------
* added C++ implementations for AQL functions `SLICE()` and `CONTAINS()`
* as a consequence of the upgrade to V8 version 5, the implementation of the * as a consequence of the upgrade to V8 version 5, the implementation of the
JavaScript `Buffer` object had to be changed. JavaScript `Buffer` objects in JavaScript `Buffer` object had to be changed. JavaScript `Buffer` objects in
ArangoDB now always store their data on the heap. There is no shared pool ArangoDB now always store their data on the heap. There is no shared pool

View File

@ -52,8 +52,8 @@ void* memrchr(void const* block, int c, size_t size) {
#ifdef _WIN32 #ifdef _WIN32
void* xmemmem(void const* haystack, size_t haystackLength, void* memmem(void const* haystack, size_t haystackLength,
void const* needle, size_t needleLength) { void const* needle, size_t needleLength) {
if (haystackLength == 0 || if (haystackLength == 0 ||
needleLength == 0 || needleLength == 0 ||
haystackLength < needleLength) { haystackLength < needleLength) {