search for: z_null

Displaying 8 results from an estimated 8 matches for "z_null".

2020 Jun 18
1
[PATCH] fix warnings with GCC 10
.../usr/klibc/zlib/inflate.c @@ -649,6 +649,7 @@ int flush; if (state->flags & 0x0200) CRC2(state->check, hold); INITBITS(); state->mode = TIME; + /* fallthrough */ case TIME: NEEDBITS(32); if (state->head != Z_NULL) @@ -656,6 +657,7 @@ int flush; if (state->flags & 0x0200) CRC4(state->check, hold); INITBITS(); state->mode = OS; + /* fallthrough */ case OS: NEEDBITS(16); if (state->head != Z_NULL) { @@ -665,6 +667,7 @...
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
2018 Jan 29
1
Rsync 3.1.3 released
Rsync 3.1.3 is now available for downloading. This is a security, feature, and bug-fix release. To see a full summary of the changes since 3.1.2, visit this link: http://rsync.samba.org/ftp/rsync/src/rsync-3.1.3-NEWS You can download the source tar file and its signature from here: http://rsync.samba.org/ftp/rsync/src/rsync-3.1.3.tar.gz
2018 Jan 29
1
Rsync 3.1.3 released
Rsync 3.1.3 is now available for downloading. This is a security, feature, and bug-fix release. To see a full summary of the changes since 3.1.2, visit this link: http://rsync.samba.org/ftp/rsync/src/rsync-3.1.3-NEWS You can download the source tar file and its signature from here: http://rsync.samba.org/ftp/rsync/src/rsync-3.1.3.tar.gz
2018 Feb 13
2
[Bug 13268] New: [WARN] shifting a negative signed value is undefined
...Reporter: ben.rubson at gmail.com QA Contact: rsync-qa at samba.org Hi, I'm getting the following warning while compiling with FreeBSD : --- zlib/inflate.o --- zlib/inflate.c:1528:61: warning: shifting a negative signed value is undefined [-Wshift-negative-value] if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16; ~~~ ^ # cc --version FreeBSD clang version 3.8.0 (tags/RELEASE_380/final 262564) (based on LLVM 3.8.0) Target: x86_64-unknown-freebsd11.0 Thread model: posix Thx ! Ben -- You are receiv...
2002 Jan 30
1
Patch: update zlib/* to 1.1.3
...995-1998 Jean-loup Gailly "; /* If you use the zlib library in a product, an acknowledgment is welcome in the documentation of your product. If for some reason you cannot @@ -608,11 +608,13 @@ deflate_state *ss; ushf *overlay; - ss = source->state; - if (source == Z_NULL || dest == Z_NULL || ss == Z_NULL) { + if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) { return Z_STREAM_ERROR; } + + ss = source->state; + *dest = *source; ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); Index: zlib/deflate.h...
2002 Jan 07
0
rsync-2.5.1 / zlib patches
..._to_vms_c.tpu AND prj_zlib:adler32.tpu on 6-JAN-2002 08:43:46.62 OPENVMS_AXP */ /* adler32.c -- compute the Adler-32 checksum of a data stream * Copyright (C) 1995-1998 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h @@ -29,7 +30,7 @@ if (buf == Z_NULL) return 1L; - while (len > 0) { + while (len != 0) { k = len < NMAX ? len : NMAX; len -= k; while (k >= 16) { PROJECT_ROOT:[rsync_vms.ZLIB]TREES.GDIFF;2 --- ref_zlib:trees.c Fri May 22 08:45:43 1998 +++ lcl_zlib:trees.c Sun Jan 6 18:09:15 2002...
2006 Feb 24
2
r56 - trunk/debian
.../arch/ppc64/boot/zlib.c 2005-06-17 21:48:29.000000000 +0200 -+++ linux-2.6.12-xen/arch/ppc64/boot/zlib.c 2006-02-17 00:45:18.201526317 +0100 ++++ linux-2.6.12-xen/arch/ppc64/boot/zlib.c 2006-02-25 00:12:30.024559093 +0100 @@ -1307,7 +1307,7 @@ local int huft_build( { *t = (inflate_huft *)Z_NULL; @@ -6935,7 +6935,7 @@ /* Generate the Huffman codes and for each, make the table entries */ diff -Nurp pristine-linux-2.6.12/arch/ppc64/kernel/pSeries_smp.c linux-2.6.12-xen/arch/ppc64/kernel/pSeries_smp.c --- pristine-linux-2.6.12/arch/ppc64/kernel/pSeries_smp.c 2005-06-17 21:48:29.00000000...