mirror of
https://github.com/facebook/zstd.git
synced 2025-07-30 22:23:13 +03:00
legacy.c: fix memory leaks
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user