Skip to content

Commit

Permalink
Corrected double free for issue #81
Browse files Browse the repository at this point in the history
  • Loading branch information
ravelox committed Jul 3, 2020
1 parent 7d36154 commit 63e0aa5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion raveloxmidi/configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
m4_define([VERSION_NUMBER],[0.9.1])
m4_define([VERSION_NUMBER],[0.9.2])
m4_define([BUILD_NUMBER],m4_esyscmd_s(pkgscripts/build_number))
m4_define([FULL_VERSION], [VERSION_NUMBER.BUILD_NUMBER])
AC_INIT([raveloxmidi],[FULL_VERSION])
Expand Down
1 change: 0 additions & 1 deletion raveloxmidi/src/raveloxmidi_alsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ static void raveloxmidi_alsa_add_input( const char *device_name , size_t buffer_
snd_rawmidi_params_set_buffer_size( input_handle, params, buffer_size );
snd_rawmidi_params( input_handle, params );
snd_rawmidi_params_free( params );
free( params );
}

raveloxmidi_alsa_dump_rawmidi( input_handle );
Expand Down

0 comments on commit 63e0aa5

Please sign in to comment.