1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

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

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 */
}