mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-07-13 18:47:44 +00:00
FS-4099 --resolve windows only regression
This commit is contained in:
parent
6803346c94
commit
33b22c485d
@ -67,7 +67,7 @@ static switch_status_t sndfile_file_open(switch_file_handle_t *handle, const cha
|
|||||||
int i;
|
int i;
|
||||||
sf_count_t frames = 0;
|
sf_count_t frames = 0;
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
char ps = '\\';
|
char ps = '/';
|
||||||
#else
|
#else
|
||||||
char ps = '/';
|
char ps = '/';
|
||||||
#endif
|
#endif
|
||||||
@ -169,8 +169,8 @@ static switch_status_t sndfile_file_open(switch_file_handle_t *handle, const cha
|
|||||||
if ((last = strrchr(alt_path, ps))) {
|
if ((last = strrchr(alt_path, ps))) {
|
||||||
last++;
|
last++;
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
if (strrchr(last, '/')) {
|
if (strrchr(last, '\\')) {
|
||||||
last = strrchr(alt_path, '/'); /* do not swallow a forward slash if they are intermixed under windows */
|
last = strrchr(alt_path, '\\'); /* do not swallow a back slash if they are intermixed under windows */
|
||||||
last++;
|
last++;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user