Lines Matching refs:arg_list
831 - arg_list = gcry_malloc (sizeof (*arg_list) * (data_n + 1));
832 + arg_list = gcry_calloc (data_n + 1, sizeof (*arg_list));
833 if (! arg_list)
840 - arg_list = gcry_malloc (sizeof (*arg_list) * (data_length * 2));
841 + arg_list = gcry_calloc (data_length, sizeof (*arg_list) * 2);
842 if (! arg_list)
849 - arg_list = gcry_malloc (sizeof (*arg_list) * arg_list_n);
850 + arg_list = gcry_calloc (arg_list_n, sizeof (*arg_list));
851 if (! arg_list)
884 - arg_list = malloc (nelem * sizeof *arg_list);
885 + arg_list = calloc (nelem, sizeof *arg_list);
886 if (!arg_list)
893 - arg_list = malloc (nelem * sizeof *arg_list);
894 + arg_list = calloc (nelem, sizeof *arg_list);
895 if (!arg_list)