Displaying 4 results from an estimated 4 matches for "z_data_error".
Did you mean:
data_error
2012 Feb 20
4
r: (1, 'Internal error', 'panic: xc_dom_core.c:273: xc_dom_do_gunzip: inflate failed (rc=-3)').. only on Intel hardware and only under 32-bit dom0
The combination is bit awkward so not sure why this is happening, but with
Xen 4.1.x hypervisor (64-bit), with a 32-bit dom0 (3.3-rcX or 3.2) and with a 3.3-rcX or 3.2 domU
I get this:
sh-4.1# Feb 20 17:47:41 tst006 init: reloading /etc/inittab
xl info
host : tst006.dumpdata.com
release : 3.3.0-rc4
version : #1 SMP PREEMPT Mi686
nr_cpus
2015 Apr 14
2
[Bug 11215] New: compression/zlib errors discard the zlib error message
...)
> recv_state = r_inflated;
> if (n != 0) {
> *data = dbuf;
> return n;
> }
> break;
The problem is that -3 refers to Z_DATA_ERROR. This error is returned whenever
the zlib state machine enters the "BAD" state (inflate.c), e.g.
> case HCRC:
> if (state->flags & 0x0200) {
> NEEDBITS(16);
> if (hold != (state->check & 0xffff)) {
>...
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello,
the following patches should get multidisk access working.
The syntax accepted is the following:
(hdx,y)/path/to/file
where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk.
the other accepted syntax is using MBR's 32 bits disk signature so for example:
(mbr:0x12345678,2)/foo/bar
would address
2007 Feb 13
0
9 commits - libswfdec/js libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_image.c libswfdec/swfdec_script.c test/Makefile.am test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c
...nough bytes available");
- return NULL;
- }
- screen->z.avail_in = size;
- screen->z.next_out = screen->block_buffer->data;
- screen->z.avail_out = screen->block_buffer->length;
- result = inflate (&screen->z, Z_FINISH);
- if (result == Z_DATA_ERROR) {
- inflateSync (&screen->z);
- result = inflate (&screen->z, Z_FINISH);
- }
- if (result < 0) {
- SWFDEC_WARNING ("error decoding block: %s", screen->z.msg);
+ buffer = swfdec_bits_decompress (&bits, size, bw * bh * 4);
+ if (buffer == NULL) {...