Skip to content

Commit ff1fd0f

Browse files
committed
fixup! fsmonitor-ipc: create client routines for git-fsmonitor--daemon
Another instance where `since_token` was expected to be non-`NULL`, but apparently it is quite possible, as demonstrated by Scalar's Functional Test suite. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 879d1d0 commit ff1fd0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fsmonitor-ipc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ int fsmonitor_ipc__send_query(const char *since_token,
4444
trace2_region_enter("fsm_client", "query", NULL);
4545

4646
trace2_data_string("fsm_client", NULL, "query/command",
47-
since_token);
47+
since_token ? since_token : "(null-token)");
4848

4949
try_again:
5050
state = ipc_client_try_connect(fsmonitor_ipc__get_path(), &options,

0 commit comments

Comments
 (0)