forked from wolfSSL/wolfssl
remove unnecessary NULL assignment
This commit is contained in:
@ -870,7 +870,8 @@ static INLINE void tcp_accept(SOCKET_T* sockfd, SOCKET_T* clientfd,
|
|||||||
if (ready_file) {
|
if (ready_file) {
|
||||||
#ifndef NO_FILESYSTEM
|
#ifndef NO_FILESYSTEM
|
||||||
FILE* srf = NULL;
|
FILE* srf = NULL;
|
||||||
ready = args ? args->signal : NULL;
|
if (args)
|
||||||
|
ready = args->signal;
|
||||||
|
|
||||||
if (ready) {
|
if (ready) {
|
||||||
srf = fopen(ready->srfName, "w");
|
srf = fopen(ready->srfName, "w");
|
||||||
|
Reference in New Issue
Block a user