* src/cache/ftcmanag.c (FTC_Manager_Reset): Add missing cache flush.

This code, present since eight(!) years in the unused `CACHE'
branch, has been forgotten to apply to the master branch.  It's
really amazing that noone has ever complained since
`FTC_Manager_Reset' is pretty useless without flushing the cache.
This commit is contained in:
Werner Lemberg 2013-06-09 08:20:54 +02:00
parent 3f6e0e0c6b
commit 2ba871b289
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2013-06-09 David Turner <digit@google.com>
* src/cache/ftcmanag.c (FTC_Manager_Reset): Add missing cache flush.
This code, present since eight(!) years in the unused `CACHE'
branch, has been forgotten to apply to the master branch. It's
really amazing that noone has ever complained since
`FTC_Manager_Reset' is pretty useless without flushing the cache.
2013-06-07 Werner Lemberg <wl@gnu.org>
Add and improve pragmas for MSVC compiler.

View File

@ -456,7 +456,8 @@
FTC_MruList_Reset( &manager->sizes );
FTC_MruList_Reset( &manager->faces );
}
/* XXX: FIXME: flush the caches? */
FTC_Manager_FlushN( manager, manager->num_nodes );
}