mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +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
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:
@@ -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