projects
/
goodguy
/
cinelerra.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1da7680
)
fix cache bug in last update
author
Good Guy
<
[email protected]
>
Sat, 20 Jun 2020 23:32:20 +0000
(17:32 -0600)
committer
Good Guy
<
[email protected]
>
Sat, 20 Jun 2020 23:32:20 +0000
(17:32 -0600)
cinelerra-5.1/cinelerra/cache.C
patch
|
blob
|
history
diff --git
a/cinelerra-5.1/cinelerra/cache.C
b/cinelerra-5.1/cinelerra/cache.C
index ec219d2180e669e7399d087115180fc766d21c7a..3a0d118e0397f01a28b227d6d2796c186df6e97b 100644
(file)
--- a/
cinelerra-5.1/cinelerra/cache.C
+++ b/
cinelerra-5.1/cinelerra/cache.C
@@
-176,7
+176,7
@@
int CICache::delete_entry(char *path)
while( current && strcmp(current->asset->path, path) !=0 )
current = NEXT;
if( !current ) break;
- if( current->checked_out ) {
+ if(
!
current->checked_out ) {
remove_pointer(current);
break;
}