1
0
mirror of https://github.com/coturn/coturn.git synced 2025-10-24 20:41:03 +02:00

wrong fread usage

This commit is contained in:
islamoglus 2019-05-14 17:30:29 +03:00
parent c4477bfddd
commit 59be080af5

View File

@ -1870,7 +1870,7 @@ static int adminmain(int argc, char **argv)
} }
else{ else{
fseek (fptr, 0, SEEK_SET); fseek (fptr, 0, SEEK_SET);
if( fread(generated_key, sizeof(char), 16, fptr) !=0 ){ if( fread(generated_key, sizeof(char), 16, fptr) != 16 ){
TURN_LOG_FUNC(TURN_LOG_LEVEL_ERROR, "%s: ERROR: Secret-Key file is empty\n",__FUNCTION__); TURN_LOG_FUNC(TURN_LOG_LEVEL_ERROR, "%s: ERROR: Secret-Key file is empty\n",__FUNCTION__);
} }
fclose (fptr); fclose (fptr);
@ -2910,7 +2910,7 @@ static void set_ctx(SSL_CTX** out, const char *protocol, const SSL_METHOD* metho
perror("Cannot open Secret-Key file"); perror("Cannot open Secret-Key file");
} else { } else {
fseek (f, 0, SEEK_SET); fseek (f, 0, SEEK_SET);
if ( fread(turn_params.secret_key, sizeof(char), 16, f) != 0 ){ if ( fread(turn_params.secret_key, sizeof(char), 16, f) != 16 ){
TURN_LOG_FUNC(TURN_LOG_LEVEL_ERROR, "%s: ERROR: Secret-Key file is empty\n",__FUNCTION__); TURN_LOG_FUNC(TURN_LOG_LEVEL_ERROR, "%s: ERROR: Secret-Key file is empty\n",__FUNCTION__);
} }
fclose (f); fclose (f);