added fix for osx caching
parent
b17d9817d8
commit
6be54e5b74
|
@ -841,7 +841,7 @@ if( found && *found == 0 ) {
|
|||
}
|
||||
|
||||
// search (cache)
|
||||
if( !ptr ) {
|
||||
if( !ptr && ! is(osx) ) {
|
||||
ptr = cache_lookup(lookup_id, &size);
|
||||
}
|
||||
|
||||
|
|
|
@ -5815,7 +5815,7 @@ if( found && *found == 0 ) {
|
|||
}
|
||||
|
||||
// search (cache)
|
||||
if( !ptr ) {
|
||||
if( !ptr && ! is(osx) ) {
|
||||
ptr = cache_lookup(lookup_id, &size);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue