mirror of
https://github.com/git-for-windows/git.git
synced 2026-03-28 15:45:21 -05:00
Merge pull request #3258 from dscho/fix-another-fsmonitor-segfault
FSMonitor v2: fix another fall-out of `since_token` being potentially `NULL`
This commit is contained in:
@@ -44,7 +44,7 @@ int fsmonitor_ipc__send_query(const char *since_token,
|
||||
trace2_region_enter("fsm_client", "query", NULL);
|
||||
|
||||
trace2_data_string("fsm_client", NULL, "query/command",
|
||||
since_token);
|
||||
since_token ? since_token : "(null-token)");
|
||||
|
||||
try_again:
|
||||
state = ipc_client_try_connect(fsmonitor_ipc__get_path(), &options,
|
||||
|
||||
Reference in New Issue
Block a user