From: Po-Yu Chuang <redacted>
gator_crc32_table might be accessed by gator_chksum_crc32() before
it is allocated.
Signed-off-by: Po-Yu Chuang <redacted>
---
Hi Pawel Moll,
Not sure where to post this patch. Please let me know if there were something
wrong.
gator_main.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gator_main.c b/gator_main.c
index 60b09cb..12aa1be 100644
--- a/gator_main.c
+++ b/gator_main.c
@@ -739,13 +739,13 @@ static int gator_op_start(void)
mutex_lock(&start_mutex);
+ cookies_initialize();
+
if (gator_started || gator_start())
err = -EINVAL;
else
gator_started = 1;
- cookies_initialize();
-
mutex_unlock(&start_mutex);
return err;
--
1.6.3.3