You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
408 B

  1. --- a/src/regparse.c 2020-04-26 09:20:56.000000000 +0200
  2. +++ b/src/regparse.c 2020-06-14 21:22:18.396966276 +0200
  3. @@ -1294,7 +1294,9 @@
  4. i_free_callout_name_entry(st_callout_name_key* key, CalloutNameEntry* e,
  5. void* arg ARG_UNUSED)
  6. {
  7. - xfree(e->name);
  8. + if (IS_NOT_NULL(e)) {
  9. + xfree(e->name);
  10. + }
  11. /*xfree(key->s); */ /* is same as e->name */
  12. xfree(key);
  13. xfree(e);