Skip to content
Snippets Groups Projects
Commit 26bf1846 authored by Joshua Colp's avatar Joshua Colp Committed by Gerrit Code Review
Browse files

Merge "media_cache: Mark cache entry stale if cache file is removed"

parents 10d12b27 60e9e4fc
No related branches found
No related tags found
No related merge requests found
......@@ -224,7 +224,8 @@ int ast_media_cache_retrieve(const char *uri, const char *preferred_file_name,
*/
bucket_file = ao2_find(media_cache, uri, OBJ_SEARCH_KEY | OBJ_NOLOCK);
if (bucket_file) {
if (!ast_bucket_file_is_stale(bucket_file)) {
if (!ast_bucket_file_is_stale(bucket_file)
&& !access(bucket_file->path, R_OK)) {
ast_copy_string(file_path, bucket_file->path, len);
if ((ext = strrchr(file_path, '.'))) {
*ext = '\0';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment