| Summary: | Default is always selected in CDDB multiple match | ||
|---|---|---|---|
| Product: | [Unmaintained] kaudiocreator | Reporter: | Zamdee <zamdee> |
| Component: | general | Assignee: | Gerd Fleischer <gerdfleischer> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Zamdee
2004-11-25 01:23:10 UTC
CVS commit by larkang:
It should be the other way around :-)
Fix choosing between cddb-entries when there
are more than one match
BUG: 93875
M +1 -1 tracksimp.cpp 1.44
--- kdemultimedia/kaudiocreator/tracksimp.cpp #1.43:1.44
@@ -459,5 +459,5 @@ void TracksImp::cddbDone(CDDB::Result re
c++;
}
- if( cddb_info.size() <= c)
+ if( c < cddb_info.size() )
info = cddb_info[c];
} else {
|