On Wed, 18 Jun 2025 16:39, NIIBE Yutaka said: > + /* Get VALUE. */ > + value = sexp_nth_buffer (lvalue, 1, &valuelen); > + if (!value) > + rc = GPG_ERR_INV_OBJ; > + if (rc) > + goto leave;
Please change the above to > + if (!value) > + { > + rc = GPG_ERR_INV_OBJ; > + goto leave; > + } just because this is easier to understand and the same pattern we use above. Shalom-Salam, Werner -- The pioneers of a warless world are the youth that refuse military service. - A. Einstein
openpgp-digital-signature.asc
Description: PGP signature
_______________________________________________ Gcrypt-devel mailing list Gcrypt-devel@gnupg.org https://lists.gnupg.org/mailman/listinfo/gcrypt-devel