mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 776200 - Reduce compression level as temporary fix for SunSpider regression. r=pierron
--HG-- extra : rebase_source : 7516bb18a5bbceca411d2053a5ff546cf0de27ec
This commit is contained in:
parent
53ef61121a
commit
1e144ee5ad
@ -54,7 +54,7 @@ js::TryCompressString(const unsigned char *inp, size_t inplen, unsigned char *ou
|
||||
zs.avail_in = inplen;
|
||||
zs.next_out = out;
|
||||
zs.avail_out = inplen;
|
||||
int ret = deflateInit(&zs, Z_DEFAULT_COMPRESSION);
|
||||
int ret = deflateInit(&zs, Z_BEST_SPEED);
|
||||
if (ret != Z_OK) {
|
||||
JS_ASSERT(ret == Z_MEM_ERROR);
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user