mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
- eitd: fix possible buffer overflow while writing egp-data (patch by FlatTV)
This commit is contained in:
@@ -1177,14 +1177,12 @@ static void commandWriteSI2XML(int connfd, char *data, const unsigned dataLength
|
||||
sendEmptyResponse(connfd, NULL, 0);
|
||||
if ((!reader_ready) || (dataLength > 100)){
|
||||
eventServer->sendEvent(CSectionsdClient::EVT_WRITE_SI_FINISHED, CEventServer::INITID_SECTIONSD);
|
||||
return;
|
||||
return;
|
||||
}
|
||||
char epgdir[100] = "";
|
||||
|
||||
strncpy(epgdir, data, dataLength);
|
||||
epgdir[dataLength] = '\0';
|
||||
data[dataLength] = '\0';
|
||||
|
||||
writeEventsToFile(epgdir);
|
||||
writeEventsToFile(data);
|
||||
|
||||
eventServer->sendEvent(CSectionsdClient::EVT_WRITE_SI_FINISHED, CEventServer::INITID_SECTIONSD);
|
||||
}
|
||||
|
Reference in New Issue
Block a user