From 9f3438b2bce7107821c473fe9aa1feba2bf13d49 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Wed, 13 Dec 2023 16:07:31 +0000 Subject: [PATCH] Fix a call to 'access()' by adding a call to 'uriDecodeString()' For testing - needs to be checked by Adrien and will most likely be needed for other calls to 'access()' --- libs/aaf/AAFIAudioFiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/aaf/AAFIAudioFiles.c b/libs/aaf/AAFIAudioFiles.c index 0504e7b36a..488c1f1e54 100644 --- a/libs/aaf/AAFIAudioFiles.c +++ b/libs/aaf/AAFIAudioFiles.c @@ -122,7 +122,7 @@ aafi_locate_external_essence_file (AAF_Iface* aafi, const wchar_t* original_uri_ // debug( "Search filepath : %s", fpath ); - if (access (local_filepath, F_OK) != -1) { +/* JE - for testing !!!! (added call to uriDecodeString() */ if (access (uriDecodeString(local_filepath, NULL), F_OK) != -1) { // debug( "FOUND: %s", local_filepath ); retpath = local_filepath; goto found;