diff options
Diffstat (limited to 'includes/Output.h')
| -rw-r--r-- | includes/Output.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/includes/Output.h b/includes/Output.h index 59d9d67..d771227 100644 --- a/includes/Output.h +++ b/includes/Output.h @@ -16,11 +16,11 @@ class Output : public SeekableHandle {      virtual time_t getMTime();      const char * getFName() { return m_fname.to_charp(); }    private: -    int m_fd; +    int m_fd = -1;      String m_name;      String m_fname; -    off_t m_size; -    time_t m_mtime; +    off_t m_size = -1; +    time_t m_mtime = -1;  };  }; | 
