mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 07:23:09 +02:00
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:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user