Fixed again lint warnings.

This commit is contained in:
Rolf Ahrenberg 2009-03-20 23:38:26 +02:00
parent 55bf971e3e
commit e74d4f88f4
1 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ bool cIptvProtocolExt::Open(void)
{
debug("cIptvProtocolExt::Open()\n");
// Reject empty script files
if (!strlen(scriptFile))
if (!strlen(*scriptFile))
return false;
// Create the listening socket
OpenSocket(socketPort);
@ -139,7 +139,7 @@ bool cIptvProtocolExt::Set(const char* Location, const int Parameter, const int
struct stat stbuf;
// Update script file and parameter
scriptFile = cString::sprintf("%s/%s", IptvConfig.GetConfigDirectory(), Location);
if ((stat(scriptFile, &stbuf) != 0) || (strstr(scriptFile, "..") != 0)) {
if ((stat(*scriptFile, &stbuf) != 0) || (strstr(*scriptFile, "..") != 0)) {
error("ERROR: Non-existent or relative path script '%s'", *scriptFile);
return false;
}