Commit a209d5d8 authored by Ondrej Zajicek's avatar Ondrej Zajicek
Browse files

A minor fix in BSD.

parent 8815d846
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -697,7 +697,9 @@ krt_set_construct(struct krt_config *c UNUSED)
void
krt_set_shutdown(struct krt_proto *x UNUSED, int last UNUSED)
{
  if (krt_buffer)
  if (!krt_buffer)
    return;

  mb_free(krt_buffer);
  krt_buffer = NULL;
}
@@ -720,6 +722,9 @@ krt_if_start(struct kif_proto *p UNUSED)
void
krt_if_shutdown(struct kif_proto *p UNUSED)
{
  if (!kif_buffer)
    return;

  mb_free(kif_buffer);
  kif_buffer = NULL;
}