view close.c @ 8:fe254ba0818d

Add missing frees
author Louis Opter <louis@dotcloud.com>
date Sun, 02 Jan 2011 01:14:56 +0100
parents 6ce4443e7545
children
line wrap: on
line source

#include <stdlib.h>

#include "_lxcstats.h"
#include "lxcstats.h"

int
lxcst_close(lxcst_handle *hdl)
{
    if (hdl) {
        free(hdl->cgroup_dir);
        free(hdl);
    }

    return (0);
}