Skip to content

Commit

Permalink
Add return NULL in void* functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadliaJerad committed Mar 14, 2024
1 parent b33b863 commit 2530145
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/federated/RTI/rti_remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ static void* pending_provisional_grant_thread(void* federate) {
fed->pending_provisional_grant = NEVER_TAG;
}
lf_mutex_unlock(&rti_mutex);
return NULL;
}

/**
Expand Down Expand Up @@ -2120,6 +2121,7 @@ void* lf_connect_to_transient_federates_thread(void* nothing) {
}
}
}
return NULL;
}

void* respond_to_erroneous_connections(void* nothing) {
Expand Down

0 comments on commit 2530145

Please sign in to comment.