Merge branch 'dklann-dklann-rdimport-cartchunk-cutid'

This commit is contained in:
Fred Gleason
2021-04-05 14:07:13 -04:00
3 changed files with 7 additions and 0 deletions

View File

@@ -54,3 +54,6 @@ Chris Smowton
Scott Spillers <scotts@paravelsystems.com>
The original Icon set
David Klann <dklann@broadcasttool.com>
Some small bug fixes

View File

@@ -20702,3 +20702,6 @@
2020-12-24 Fred Gleason <fredg@paravelsystems.com>
* Modified the schema map in rddbmgr(8) to position schema update
347 as part of v3.6.x.
2021-04-05 David Klann <dklann@broadcasttool.com>
* Fixed bug in lib/rdwavefile.cpp that copied CartChunk Cut ID
past the end of the first "NULL" character.

View File

@@ -4644,6 +4644,7 @@ QString RDWaveFile::cutString(char *buffer,unsigned start_point,unsigned size)
QString string;
for(unsigned i=start_point;i<start_point+size;i++) {
if(!(buffer[i])) break;
string=string.append(buffer[i]);
}