Commit d33c9d2c authored by Job Vranish's avatar Job Vranish
Browse files

Merge branch 'develop' of github.com:Seagate/kinetic-c into develop

parents 74485131 3c31474c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -657,6 +657,7 @@ void bus_free(bus *b) {

    free(b->joined);
    free(b->threads);
    yacht_free(b->fd_set, NULL, NULL);

    pthread_mutex_destroy(&b->log_lock);

+2 −0
Original line number Diff line number Diff line
@@ -236,6 +236,8 @@ void yacht_free(struct yacht *y, yacht_free_cb *cb, void *udata) {
                cb(y->values[i], udata);
            }
        }
        free(y->buckets);
        free(y->values);
        free(y);
    }
}