提交 4ef6eb1e 编写于 作者: R r00559040

内源问题修改

Signed-off-by: Nr00559040 <ry.renyi@huawei.com>
上级 24b0dd2b
...@@ -1151,7 +1151,7 @@ HWTEST_F(ActsZlibTest, ActsZlibTestGzRewind, Function | MediumTest | Level2) ...@@ -1151,7 +1151,7 @@ HWTEST_F(ActsZlibTest, ActsZlibTestGzRewind, Function | MediumTest | Level2)
*/ */
HWTEST_F(ActsZlibTest, ActsZlibTestGzseek, Function | MediumTest | Level2) HWTEST_F(ActsZlibTest, ActsZlibTestGzseek, Function | MediumTest | Level2)
{ {
int64_t err = 0L; long err = 0L;
gzFile file; gzFile file;
file = gzopen(TESTFILE, "wb"); file = gzopen(TESTFILE, "wb");
ASSERT_TRUE(file != NULL); ASSERT_TRUE(file != NULL);
...@@ -1331,7 +1331,7 @@ HWTEST_F(ActsZlibTest, ActsZlibTestInflateCodesUsed, Function | MediumTest | Lev ...@@ -1331,7 +1331,7 @@ HWTEST_F(ActsZlibTest, ActsZlibTestInflateCodesUsed, Function | MediumTest | Lev
compr = static_cast<Byte*>(calloc(static_cast<uInt>(comprLen), CALLOC_SIZE)); compr = static_cast<Byte*>(calloc(static_cast<uInt>(comprLen), CALLOC_SIZE));
uncompr = static_cast<Byte*>(calloc(static_cast<uInt>(uncomprLen), CALLOC_SIZE)); uncompr = static_cast<Byte*>(calloc(static_cast<uInt>(uncomprLen), CALLOC_SIZE));
ASSERT_TRUE(compr != Z_NULL && uncompr != Z_NULL); ASSERT_TRUE(compr != Z_NULL && uncompr != Z_NULL);
unsigned uint64_t err; unsigned long err;
z_stream d_stream; /* decompression stream */ z_stream d_stream; /* decompression stream */
strcpy(reinterpret_cast<char *>(uncompr), GARBAGE); strcpy(reinterpret_cast<char *>(uncompr), GARBAGE);
d_stream.zalloc = nullptr; d_stream.zalloc = nullptr;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册