From 180b03c2873996bbbef36559cb14c86eddc0f00f Mon Sep 17 00:00:00 2001 From: Kyle Hill Date: Sat, 1 Sep 2012 22:07:49 -0500 Subject: [PATCH] Remove unused assignment in cddb.cpp --- xbmc/network/cddb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/network/cddb.cpp b/xbmc/network/cddb.cpp index 443b6ea767cde..d4a4c59f61b7b 100644 --- a/xbmc/network/cddb.cpp +++ b/xbmc/network/cddb.cpp @@ -491,7 +491,7 @@ void Xcddb::parseData(const char *buffer) // the data contained on those lines should be concatenated char *line; const char trenner[3] = {'\n', '\r', '\0'}; - line = strtok((char*)buffer, trenner); // skip first line + strtok((char*)buffer, trenner); // skip first line while ((line = strtok(0, trenner))) { // Lines that begin with # are comments, should be ignored