Skip to content

Commit

Permalink
Merge pull request #30050 from smuzaffar/fix-unit-test-Serialization
Browse files Browse the repository at this point in the history
Initialize FileBlob data members
  • Loading branch information
cmsbuild committed Jun 2, 2020
2 parents 0f1d234 + 06cc6c7 commit e34b5f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CondFormats/Common/interface/FileBlob.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@

class FileBlob {
public:
FileBlob(){};
FileBlob() {
compressed = false;
isize = 0;
};
/// constructor from file to read
FileBlob(const std::string &fname, bool zip);
/// constructor from stream to read
Expand Down

0 comments on commit e34b5f4

Please sign in to comment.