Merge branch 'master' of git-server:jerry

This commit is contained in:
e.gavrin 2014-07-31 17:56:29 +04:00
commit cf613ad594
2 changed files with 2 additions and 2 deletions

View File

@ -457,7 +457,7 @@ typedef struct {
/**
* Size of a chunk, containing a String's part, in bytes
*/
#define ECMA_ARRAY_CHUNK_SIZE_IN_BYTES 32
#define ECMA_ARRAY_CHUNK_SIZE_IN_BYTES 8
/**
* Description of first chunk in a chain of chunks that contains an Array.

View File

@ -732,7 +732,7 @@ ecma_compare_zt_string_to_ecma_string(const ecma_char_t *string_p, /**< zero-ter
JERRY_ASSERT( next_chunk_p != NULL );
current_chunk_chars_cur = (const ecma_char_t*) ecma_string_p->data;
current_chunk_chars_cur = (const ecma_char_t*) next_chunk_p->data;
current_chunk_chars_end = (const ecma_char_t*) (next_chunk_p->data + sizeof(next_chunk_p->data));
next_chunk_compressed_pointer_p = &next_chunk_p->next_chunk_p;