From: jinyaoguo Date: Sat, 21 Jun 2025 16:57:12 +0000 (-0400) Subject: merge X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=a74f7fcabd7ef32bd7e3c1c74f26b1a959f7c020;p=thirdparty%2Fzstd.git merge --- a74f7fcabd7ef32bd7e3c1c74f26b1a959f7c020 diff --cc tests/largeDictionary.c index 998fd9fa8,a3b96135f..30ff98d98 --- a/tests/largeDictionary.c +++ b/tests/largeDictionary.c @@@ -70,9 -70,9 +70,10 @@@ int main(int argc, const char** argv char* buffer = (char*)malloc(bufferSize); void* out = malloc(outSize); void* roundtrip = malloc(dataSize); + int _exit_code = 1; (void)argc; (void)argv; + int _exit_code = 0; if (!buffer || !out || !roundtrip || !cctx || !dctx) { fprintf(stderr, "Allocation failure\n"); @@@ -127,4 -154,4 +128,5 @@@ cleanup ZSTD_freeDCtx(dctx); ZSTD_freeCCtx(cctx); return _exit_code; ++ return _exit_code; }