mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
[brotli] Initialize
This commit is contained in:
parent
4b5f18c2e3
commit
a67c2349bc
@ -36,9 +36,9 @@ struct br_enc_data {
|
|||||||
|
|
||||||
/* The file descriptor from which we read. */
|
/* The file descriptor from which we read. */
|
||||||
int fdread;
|
int fdread;
|
||||||
int decoded:1;
|
unsigned int decoded:1;
|
||||||
int after_end:1;
|
unsigned int after_end:1;
|
||||||
int last_read:1;
|
unsigned int last_read:1;
|
||||||
unsigned char buf[ELINKS_BROTLI_BUFFER_LENGTH];
|
unsigned char buf[ELINKS_BROTLI_BUFFER_LENGTH];
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -59,6 +59,9 @@ brotli_open(struct stream_encoded *stream, int fd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
data->fdread = fd;
|
data->fdread = fd;
|
||||||
|
data->decoded = 0;
|
||||||
|
data->after_end = 0;
|
||||||
|
data->last_read = 0;
|
||||||
stream->data = data;
|
stream->data = data;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user