aligned ngx_crc32_table_short was allocated from wrong pool
diff --git a/src/core/nginx.c b/src/core/nginx.c
index 0449241..a3f9ce3 100644
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -256,10 +256,6 @@
         return 1;
     }
 
-    if (ngx_crc32_init(init_cycle.pool) != NGX_OK) {
-        return 1;
-    }
-
     environ = &ngx_null_environ;
 
     ngx_max_module = 0;
@@ -287,6 +283,10 @@
 
     ngx_os_status(cycle->log);
 
+    if (ngx_crc32_init(cycle->pool) != NGX_OK) {
+        return 1;
+    }
+
     ngx_cycle = cycle;
 
     ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module);