tool_urlglob: fix compiler warning "unreachable code"

(On Windows builds.)

Follow-up to 70a3b003d9
This commit is contained in:
Daniel Stenberg 2020-09-15 00:31:18 +02:00
parent 182ff2d63c
commit 4e66207c58
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 2 additions and 2 deletions

View File

@ -698,8 +698,8 @@ CURLcode glob_match_url(char **result, char *filename, struct URLGlob *glob)
*result = sanitized;
return CURLE_OK;
}
#endif /* MSDOS || WIN32 */
#else
*result = curlx_dyn_ptr(&dyn);
return CURLE_OK;
#endif /* MSDOS || WIN32 */
}