A pointer can not be negative - ftp.cc:1269 #1

Slēgta
Ghost atvēra pirms 6 gadiem · 3 komentāri

Here is a bug report from cppcheck:

[ftp.cc:1269]: (style) A pointer can not be negative so it is either pointless or an error to check if it is.

An other one from clang-5.0.2

ftp.cc:1269:22: error:
ordered comparison between pointer and zero ('const char *' and 'int')
if(ftpResponse(-1) <= 0 || (m_iRespType != 2) )

From what I read here and there, a cast to a void pointer can be done.

if(ftpResponse(-1) <= (void*) 0 || (m_iRespType != 2) )

It builds fine, but does the software work as intended?

I've noticed that gcc-4.8.5 and clang-3.0 does build "as is" without complaining.
I stepped upon this while converting to cmake since I use clang-5.0.2 for the building.

Here is a bug report from cppcheck: [ftp.cc:1269]: (style) A pointer can not be negative so it is either pointless or an error to check if it is. An other one from clang-5.0.2 ftp.cc:1269:22: error: ordered comparison between pointer and zero ('const char *' and 'int') if(ftpResponse(-1) <= 0 || (m_iRespType != 2) ) From what I read here and there, a cast to a void pointer can be done. if(ftpResponse(-1) <= (void*) 0 || (m_iRespType != 2) ) It builds fine, but does the software work as intended? I've noticed that gcc-4.8.5 and clang-3.0 does build "as is" without complaining. I stepped upon this while converting to cmake since I use clang-5.0.2 for the building.
Īpašnieks

Because ftpResponse returns char*, I think that in this case, the purpose is to verify if null has been returned. I would therefore expect the following adjustment:

if( (ftpResponse(-1) == null) || (m_iRespType != 2) )
Because `ftpResponse` returns `char*`, I think that in this case, the purpose is to verify if null has been returned. I would therefore expect the following adjustment: ``` if( (ftpResponse(-1) == null) || (m_iRespType != 2) ) ```
Īpašnieks

"void" is by definition a null type, so it makes no sense to use order comparison on that, e.g. <= used on a void variable is pretty much a mistake. I believe the best solution is as in tdelibs:

if(!ftpResponse(-1) || (m_iRespType != 2) )

It seems there is quite a bit of duplication between

tde/main/applications/tdeio-ftps/tdeio_ftps/ftp.cc

and

tde/main/tdelibs/tdeioslave/ftp/ftp.cc
"void" is by definition a null type, so it makes no sense to use order comparison on that, e.g. <= used on a void variable is pretty much a mistake. I believe the best solution is as in tdelibs: ``` if(!ftpResponse(-1) || (m_iRespType != 2) ) ``` It seems there is quite a bit of duplication between ``` tde/main/applications/tdeio-ftps/tdeio_ftps/ftp.cc ``` and ``` tde/main/tdelibs/tdeioslave/ftp/ftp.cc ```
Īpašnieks

Resolved - used solution identical to tdelibs.

Resolved - used solution identical to tdelibs.
SlavekB slēdza šo problēmu pirms 6 gadiem
SlavekB pievienoja atskaites punktu R14.0.6 release pirms 6 gadiem
Pierakstieties, lai pievienotos šai sarunai.
Nav atskaites punktu
Nav atbildīgo
3 dalībnieki
Paziņojumi
Izpildes termiņš

Izpildes termiņš nav uzstādīts.

Atkarības

Nav atkarību.

Atsaucas uz: TDE/tdeio-ftps#1
Notiek ielāde…
Vēl nav satura.