We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents afbdf92 + c71eea8 commit 25b58aaCopy full SHA for 25b58aa
2 files changed
.github/workflows/build-ubuntu.yml
@@ -102,7 +102,6 @@ jobs:
102
name: ${{ matrix.compiler }} / strict warnings
103
runs-on: ubuntu-24.04
104
timeout-minutes: 20
105
- continue-on-error: true
106
strategy:
107
fail-fast: false
108
matrix:
sshfs.c
@@ -3954,7 +3954,7 @@ static char *tokenize_on_space(char *str)
3954
3955
start = pos;
3956
3957
- while (pos && *pos != '\0') {
+ while (*pos != '\0') {
3958
// break on space, but not on '\ '
3959
if (*pos == ' ' && *(pos - 1) != '\\') {
3960
break;
0 commit comments