I believe I found another regression in 1.1.4 as detected by python-zstandard's test suite.
ZSTD_parameters params;
memset(¶ms, 0, sizeof(params));
cctx = ZSTD_createCCtx()
cstream = ZSTD_createCStream()
ZSTD_initCStream_advanced(cstream, NULL, 0, params, 42); /* Note non-0 size */
/* Do a compression operation with cstream */
/* The produced frame doesn't have the content size written because fparams.contentSizeFlag isn't set */
ZSTD_resetCStream(cstream, 42); /* Note non-0 size */
/* Do a 2nd compression operation with cstream */
/* Regression: the produced frame has content size == 42 written despite fparams not being set. */