4 building command line to this location. */
5 char arg[1]; /* Used if data above is not used. */
7 +struct arg_without_data_s
9 + struct arg_and_data_s *next;
20 a = malloc (sizeof *a - 1);
22 return gpg_error_from_syserror ();
25 - a->inbound = inbound;
27 + struct arg_without_data_s *a2 = (struct arg_without_data_s *)a;
30 + a2->inbound = inbound;
31 + a2->arg_locp = NULL;
45 + a2->dup_to = dup_to;
48 - gpg->argtail = &a->next;
49 + gpg->argtail = &a2->next;