aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/song.cpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-01-18 03:02:10 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:45 +0100
commit1d4fd42795331fe1cfb8e404f1784cf20f387649 (patch)
tree3fa4073bfaca8642a89650f1f4b8d83a47d74103 /src/base/song.cpp
parentaf34e8b4807d981cdd75542c48be741059e91828 (diff)
downloadusdx-1d4fd42795331fe1cfb8e404f1784cf20f387649.tar.gz
usdx-1d4fd42795331fe1cfb8e404f1784cf20f387649.tar.xz
usdx-1d4fd42795331fe1cfb8e404f1784cf20f387649.zip
changed handling of empty list detection
std::list.back() returns undefined values if list is empty
Diffstat (limited to 'src/base/song.cpp')
-rw-r--r--src/base/song.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/base/song.cpp b/src/base/song.cpp
index e1b39360..f596e480 100644
--- a/src/base/song.cpp
+++ b/src/base/song.cpp
@@ -121,10 +121,8 @@ namespace usdx
LyricLine* Song::get_last_lyric_line(void)
{
- LyricLine* line = lyrics.back();
-
- if (line) {
- return line;
+ if (lyrics.size() > 0) {
+ return lyrics.back();
}
return create_new_lyric_line(0);