summaryrefslogtreecommitdiffstats
path: root/libsmartcols
diff options
context:
space:
mode:
authorIgor Gnatenko2016-09-13 15:06:49 +0200
committerIgor Gnatenko2016-09-14 17:10:14 +0200
commit937e0458554e20577019da0a033801a53e60eba1 (patch)
treead699a32de83be93ef6cf69f028fe66c50c1e6ff /libsmartcols
parenttests: add missing expected/ dir stuff (diff)
downloadkernel-qcow2-util-linux-937e0458554e20577019da0a033801a53e60eba1.tar.gz
kernel-qcow2-util-linux-937e0458554e20577019da0a033801a53e60eba1.tar.xz
kernel-qcow2-util-linux-937e0458554e20577019da0a033801a53e60eba1.zip
smartcols/symbols: free cell_padding in unref()
Signed-off-by: Igor Gnatenko <ignatenko@redhat.com>
Diffstat (limited to 'libsmartcols')
-rw-r--r--libsmartcols/src/symbols.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsmartcols/src/symbols.c b/libsmartcols/src/symbols.c
index d2f7a71ba..aceb998df 100644
--- a/libsmartcols/src/symbols.c
+++ b/libsmartcols/src/symbols.c
@@ -63,6 +63,7 @@ void scols_unref_symbols(struct libscols_symbols *sy)
free(sy->vert);
free(sy->right);
free(sy->title_padding);
+ free(sy->cell_padding);
free(sy);
}
}