Add missing initializer in can't-be-compressed case

This commit is contained in:
Eric Fischer 2018-05-11 17:13:06 -07:00
parent 450a8a741f
commit 974bfb3543

View File

@ -610,6 +610,8 @@ STREAM *streamfdopen(int fd, const char *mode, std::string const &fname) {
STREAM *streamfpopen(FILE *fp) { STREAM *streamfpopen(FILE *fp) {
STREAM *s = new STREAM; STREAM *s = new STREAM;
s->fp = fp; s->fp = fp;
s->gz = false;
return s; return s;
} }