]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Zero pointer to avoid free issues
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 3 Jul 2019 11:37:36 +0000 (12:37 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 3 Jul 2019 11:37:36 +0000 (12:37 +0100)
src/lua/lua_kann.c

index 609f05539bc314c83b7f8274aba134216cb2e232..e356f5912803829d6936a542986b9d5dcb7d855b 100644 (file)
@@ -1067,8 +1067,8 @@ lua_kann_train1 (lua_State *L)
                float **x, **y;
 
                /* Fill vectors */
-               x = (float **)g_malloc (sizeof (float *) * n);
-               y = (float **)g_malloc (sizeof (float *) * n);
+               x = (float **)g_malloc0 (sizeof (float *) * n);
+               y = (float **)g_malloc0 (sizeof (float *) * n);
 
                for (int s = 0; s < n; s ++) {
                        /* Inputs */