diff options
author | wdenk <wdenk> | 2003-07-26 08:08:08 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-07-26 08:08:08 +0000 |
commit | 7784674852c66b0924bdc79062bd208aa51fd0a9 (patch) | |
tree | df62c40f9c04ebf3b5f8c2bea9e1bc80ae05cb8d /lib_generic | |
parent | 27b207fd0a0941b03f27e2a82c0468b1a090c745 (diff) |
* Allow crc32 to be used at address 0x000
* Provide consistent interface to standalone applications to access
the 'global_data' structure
Provide a doc/README.standalone more useful to users/developers.
* Make IceCube MGT5100 FEC driver work
Diffstat (limited to 'lib_generic')
-rw-r--r-- | lib_generic/crc32.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib_generic/crc32.c b/lib_generic/crc32.c index 2de39c7db71..ce18fc2252a 100644 --- a/lib_generic/crc32.c +++ b/lib_generic/crc32.c @@ -155,7 +155,6 @@ uLong ZEXPORT crc32(crc, buf, len) const Bytef *buf; uInt len; { - if (buf == Z_NULL) return 0L; #ifdef DYNAMIC_CRC_TABLE if (crc_table_empty) make_crc_table(); |