mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix unitialized members in CacheItem
Fixes coverity issue 23380.
This commit is contained in:
parent
8d882e662b
commit
0fbc402141
@ -56,7 +56,7 @@ static FileName cache_dir;
|
||||
|
||||
class CacheItem {
|
||||
public:
|
||||
CacheItem() {}
|
||||
CacheItem() : timestamp(0), checksum(0) {}
|
||||
CacheItem(FileName const & orig_from, string const & to_format,
|
||||
time_t t, unsigned long c)
|
||||
: timestamp(t), checksum(c)
|
||||
|
Loading…
Reference in New Issue
Block a user