4 building command line to this location. */
5 char arg[FLEXIBLE_ARRAY_MEMBER]; /* Used if data above is not used. */
7 +struct arg_without_data_s
9 + struct arg_and_data_s *next;
20 a = malloc (offsetof (struct arg_and_data_s, arg));
22 return gpg_error_from_syserror ();
24 - a->inbound = inbound;
26 + struct arg_without_data_s *a2 = (struct arg_without_data_s *)a;
28 + a2->inbound = inbound;
29 + a2->arg_locp = NULL;
43 + a2->dup_to = dup_to;