Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mt32emu for openSUSE:Factory checked in at 2021-06-06 22:41:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mt32emu (Old) and /work/SRC/openSUSE:Factory/.mt32emu.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mt32emu" Sun Jun 6 22:41:06 2021 rev:5 rq:897888 version:2.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/mt32emu/mt32emu.changes 2021-04-06 17:32:22.335299570 +0200 +++ /work/SRC/openSUSE:Factory/.mt32emu.new.1898/mt32emu.changes 2021-06-06 22:41:10.611454029 +0200 @@ -1,0 +2,6 @@ +Sun Jun 6 17:47:49 UTC 2021 - ???????? ???????????? <i...@ilya.pp.ua> + +- Fixed incorrect delete statement in ROMImage dtor, affects memory + deallocations of full ROMImages created by merging partial ones. + +------------------------------------------------------------------- Old: ---- munt-libmt32emu_2_5_0.tar.gz New: ---- munt-libmt32emu_2_5_1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mt32emu.spec ++++++ --- /var/tmp/diff_new_pack.MtGNbJ/_old 2021-06-06 22:41:11.175454844 +0200 +++ /var/tmp/diff_new_pack.MtGNbJ/_new 2021-06-06 22:41:11.179454850 +0200 @@ -17,10 +17,10 @@ %define s_name munt-lib%{name}_%{s_ver} -%define s_ver 2_5_0 +%define s_ver 2_5_1 %define sover 2 Name: mt32emu -Version: 2.5.0 +Version: 2.5.1 Release: 0 Summary: An emulator of the Roland MT-32, CM-32L and LAPC-I synthesiser modules License: GPL-3.0-or-later AND LGPL-2.1-or-later ++++++ munt-libmt32emu_2_5_0.tar.gz -> munt-libmt32emu_2_5_1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/munt-libmt32emu_2_5_0/mt32emu/CMakeLists.txt new/munt-libmt32emu_2_5_1/mt32emu/CMakeLists.txt --- old/munt-libmt32emu_2_5_0/mt32emu/CMakeLists.txt 2021-04-02 20:33:47.000000000 +0200 +++ new/munt-libmt32emu_2_5_1/mt32emu/CMakeLists.txt 2021-05-22 12:07:50.000000000 +0200 @@ -7,7 +7,7 @@ set(libmt32emu_URL "http://munt.sourceforge.net/") set(libmt32emu_VERSION_MAJOR 2) set(libmt32emu_VERSION_MINOR 5) -set(libmt32emu_VERSION_PATCH 0) +set(libmt32emu_VERSION_PATCH 1) set(libmt32emu_VERSION "${libmt32emu_VERSION_MAJOR}.${libmt32emu_VERSION_MINOR}.${libmt32emu_VERSION_PATCH}") if(${munt_WITH_MT32EMU_SMF2WAV} OR ${munt_WITH_MT32EMU_QT}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/munt-libmt32emu_2_5_0/mt32emu/NEWS.txt new/munt-libmt32emu_2_5_1/mt32emu/NEWS.txt --- old/munt-libmt32emu_2_5_0/mt32emu/NEWS.txt 2021-04-02 20:33:47.000000000 +0200 +++ new/munt-libmt32emu_2_5_1/mt32emu/NEWS.txt 2021-05-22 12:07:50.000000000 +0200 @@ -1,3 +1,10 @@ +2021-05-22: + + 2.5.1 released. + + * Fixed incorrect delete statement in ROMImage dtor, affects memory deallocations + of full ROMImages created by merging partial ones. (#60) + 2021-04-02: 2.5.0 released. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/munt-libmt32emu_2_5_0/mt32emu/src/ROMInfo.cpp new/munt-libmt32emu_2_5_1/mt32emu/src/ROMInfo.cpp --- old/munt-libmt32emu_2_5_0/mt32emu/src/ROMInfo.cpp 2021-04-02 20:33:47.000000000 +0200 +++ new/munt-libmt32emu_2_5_1/mt32emu/src/ROMInfo.cpp 2021-05-22 12:07:50.000000000 +0200 @@ -247,7 +247,7 @@ if (ownFile) { const Bit8u *data = file->getData(); delete file; - delete data; + delete[] data; } }