aignacio_sf 17 lat temu
rodzic
commit
30ff415599
2 zmienionych plików z 3 dodań i 0 usunięć
  1. 1 0
      panda/src/display/lru.cxx
  2. 2 0
      panda/src/display/lru.h

+ 1 - 0
panda/src/display/lru.cxx

@@ -150,6 +150,7 @@ LruPage::LruPage ( )
 {
   if(this) {
     memset(&this->_m, 0, sizeof (LruPageVariables));
+    _m.name = "";   
   }
 }
 

+ 2 - 0
panda/src/display/lru.h

@@ -121,6 +121,8 @@ public:
     LruPage *previous;
     LruPage *next;
     Lru *lru;
+    
+    string name;
   }
   LruPageVariables;