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


Origin commit data
------------------
Branch: ni/coolstream
Commit: 023753126d
Author: mws <mws@e54a6e83-5905-42d5-8d5c-058d10e6a962>
Date: 2009-12-22 (Tue, 22 Dec 2009)



------------------
This commit was generated by Migit
This commit is contained in:
mws
2009-12-22 12:33:25 +00:00
parent 2024ce9383
commit ec5741fa4d

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;