? 888002-flushes.patch
? expire.patch
? valid_expired.patch
? valid_expired.path
Index: memcache.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/memcache/memcache.inc,v
retrieving revision 1.28.2.11
diff -u -p -r1.28.2.11 memcache.inc
--- memcache.inc	25 Aug 2010 14:10:10 -0000	1.28.2.11
+++ memcache.inc	25 Aug 2010 21:33:13 -0000
@@ -219,7 +219,7 @@ class MemCacheDrupal implements DrupalCa
    * Check if a wildcard flush has invalidated the current cached copy.
    */
   private function wildcard_valid($cid, $cache) {
-    if ((int)$cache->flushes < (int)$this->wildcard_flushes($cid)) {
+    if (!isset($cache->flushes) || ((int)$cache->flushes < (int)$this->wildcard_flushes($cid))) {
       return FALSE;
     }
     return TRUE;
