From: <sba...@us...> - 2021-06-01 05:25:52
|
This is an automated email from the git hooks/post-receive-user script. sbaldovi pushed a commit to branch master in repository fuse-utils. View the commit online: https://sourceforge.net/p/fuse-emulator/fuse-utils/ci/659214ec558278c3f3ce7ff54d2c1b37752a3ad6/ The following commit(s) were added to refs/heads/master by this push: new 659214e Remove double-free bug in rzxcheck 659214e is described below commit 659214ec558278c3f3ce7ff54d2c1b37752a3ad6 Author: Sergio Baldoví <ser...@gm...> AuthorDate: Tue Jun 1 07:24:48 2021 +0200 Remove double-free bug in rzxcheck After verifying the signature the program could crash --- ChangeLog | 5 +++++ rzxcheck.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e150e84..ff9e15a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2021-??-?? Philip Kendall <phi...@sh...> + + * rzxcheck + * Remove double-free bug (Sergio Baldoví). + 2018-07-01 Philip Kendall <phi...@sh...> * Version 1.4.3 released diff --git a/rzxcheck.c b/rzxcheck.c index 72f75a4..0e82b95 100644 --- a/rzxcheck.c +++ b/rzxcheck.c @@ -180,7 +180,7 @@ main( int argc, char **argv ) free( buffer ); - libspectrum_rzx_free( rzx ); free( rzx ); + libspectrum_rzx_free( rzx ); libspectrum_signature_free( &signature ); if( error == LIBSPECTRUM_ERROR_SIGNATURE ) { |