diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cache.c b/src/cache.c index 9636d0d8..04c8d356 100644 --- a/src/cache.c +++ b/src/cache.c @@ -233,7 +233,7 @@ static CacheEntry_t *Cache_entry_search_with_redirect(const DilloUrl *Url) break; } /* Test for a working redirection */ - if (entry && entry->Flags & CA_Redirect && entry->Location) { + if (entry->Flags & CA_Redirect && entry->Location) { Url = entry->Location; } else break; |