error: declaration of 'nBufSize' shadows a previous local

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@108 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
mws
2009-12-22 12:33:25 +00:00
parent c77b7f37c8
commit 023753126d

View File

@@ -415,18 +415,18 @@ bool CSectionsdClient::getEventsServiceKeySearchAdd(CChannelEventList& eList,con
if (send(sectionsd::allEventsChannelIDSearch, pSData, nBufSize))
{
int nBufSize = readResponse();
int nBufSize2 = readResponse();
if( nBufSize > 0)
if( nBufSize2 > 0)
{
char* pData = new char[nBufSize];
receive_data(pData, nBufSize);
char* pData = new char[nBufSize2];
receive_data(pData, nBufSize2);
char* dp = pData;
// int a = eList.size();
while(dp < pData + nBufSize)
while(dp < pData + nBufSize2)
{
CChannelEvent aEvent;