coverity scan, uninitialized vars.

removed crapto1.
This commit is contained in:
iceman1001 2017-07-30 10:33:40 +02:00
commit bf5b7e2d91
2 changed files with 2 additions and 2 deletions

View file

@ -1586,7 +1586,7 @@ int pskRawDemod_ext(uint8_t dest[], size_t *size, int *clock, int *invert, int *
uint8_t curPhase = *invert;
uint8_t fc=0;
size_t i=0, numBits=0, waveStart=1, waveEnd=0, firstFullWave=0, lastClkBit=0;
uint16_t fullWaveLen=0, waveLenCnt=0, avgWaveVal;
uint16_t fullWaveLen=0, waveLenCnt=0, avgWaveVal=0;
uint16_t errCnt=0, errCnt2=0;
*clock = DetectPSKClock(dest, *size, *clock, &firstFullWave, &curPhase, &fc);