Comment 7 for bug 861132

Revision history for this message
In , Dmitry V. Levin (ldv) wrote :

(In reply to comment #3)
> (In reply to comment #2)
> > Could you please consider changing this line then:
>
> No, this would require unnecessary other changes.

Since "value" and "combined" cannot be non-NULL altogether, the change is not going to be so tremendous:

- const size_t vallen = value != NULL ? strlen (value) + 1 : 0;
+ const size_t vallen = combined == NULL ? strlen (value) + 1 : 0;