mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
legacy.c: fix memory leaks
This commit is contained in:
parent
d8114e5802
commit
346ce32ade
2 changed files with 4 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ debug: pzstd$(EXT) tests roundtrip
|
|||
|
||||
.PHONY: tsan
|
||||
tsan: PZSTD_CCXXFLAGS += -fsanitize=thread -fPIC
|
||||
tsan: PZSTD_LDFLAGS += -fsanitize=thread -pie
|
||||
tsan: PZSTD_LDFLAGS += -fsanitize=thread
|
||||
tsan: debug
|
||||
|
||||
.PHONY: asan
|
||||
|
|
|
|||
|
|
@ -65,6 +65,7 @@ int testSimpleAPI(void)
|
|||
return 1;
|
||||
}
|
||||
|
||||
free(output);
|
||||
DISPLAY("Simple API OK\n");
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -118,6 +119,8 @@ int testStreamingAPI(void)
|
|||
}
|
||||
}
|
||||
|
||||
free(outBuff);
|
||||
ZSTD_freeDStream(stream);
|
||||
DISPLAY("Streaming API OK\n");
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue