traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / libbb / crc32.c
index 538a13622ada182b0602cc68774fb2039711adfa..36ac860425ad15586f3d2307c1dca6eb1a3c990e 100644 (file)
@@ -6,24 +6,27 @@
  * very well-known)
  *
  * The following function creates a CRC32 table depending on whether
- * a big-endian (0x04c11db7) or little-endian (0xedb88320) CRC32 is 
+ * a big-endian (0x04c11db7) or little-endian (0xedb88320) CRC32 is
  * required. Admittedly, there are other CRC32 polynomials floating
  * around, but Busybox doesn't use them.
  *
  * endian = 1: big-endian
  * endian = 0: little-endian
+ *
+ * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
 
 #include "libbb.h"
 
-uint32_t *crc32_filltable(int endian)
+uint32_t* FAST_FUNC crc32_filltable(uint32_t *crc_table, int endian)
 {
-       
-       uint32_t *crc_table = xmalloc(256 * sizeof(uint32_t));
        uint32_t polynomial = endian ? 0x04c11db7 : 0xedb88320;
        uint32_t c;
        int i, j;
-       
+
+       if (!crc_table)
+               crc_table = xmalloc(256 * sizeof(uint32_t));
+
        for (i = 0; i < 256; i++) {
                c = endian ? (i << 24) : i;
                for (j = 8; j; j--) {