cl.exe -nologo -I. -I../../../../include -Gs -TP -W4 -wd4127 -Wall -O2xtyb1 -Gy -GS- -GR- -EHs- -DNDEBUG -DHB_FM_STATISTICS_OFF -MT -c ../../eval.c -Foeval.obj
eval.c
../../eval.c(422) : warning C4242: 'initializing' : conversion from 'int' to 'USHORT', possible loss of data ../../eval.c(422) : warning C4365: 'initializing' : conversion from 'int' to 'USHORT', signed/unsigned mismatch
eval.c:
line 422:    USHORT usPCount = hb_pcount();

Good, this is more simple.

hb_pcount() returns int and can be negative, then if hb_pcount return -1, por exemple, will occur a underflow
and usPCount will be USHORT_MAX - 1????

In this case:

  /* decode parameters */
  if( usPCount )   // always TRUE if usPCount underflow!!
  {


Maybe is better declare usPCount int.

eval.c:
line 422: int usPCount = hb_pcount(); // prevent underflows in return of hb_pcount

Best regards,

Ranier Vilela
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to