summaryrefslogtreecommitdiffstats
path: root/libvo/vo_aa.c
diff options
context:
space:
mode:
authorcboesch <cboesch@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-11-14 09:12:34 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-14 13:11:20 +0200
commitfe3c4810e1c8b535caf07df8e4434e322d3e6fc0 (patch)
treecbcd859f358c479223eb7b0aa2a2d3dfe1c81b69 /libvo/vo_aa.c
parentb492561241f2a3263a8ab558fafc957130dbdfc1 (diff)
downloadmpv-fe3c4810e1c8b535caf07df8e4434e322d3e6fc0.tar.bz2
mpv-fe3c4810e1c8b535caf07df8e4434e322d3e6fc0.tar.xz
cleanup: remove NULL checks before free() all over the code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32624 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_aa.c')
-rw-r--r--libvo/vo_aa.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/libvo/vo_aa.c b/libvo/vo_aa.c
index 0bcb424d99..3e55803982 100644
--- a/libvo/vo_aa.c
+++ b/libvo/vo_aa.c
@@ -651,17 +651,16 @@ static int parse_suboptions(const char *arg) {
if (subcolor) aaopt_subcolor = getcolor(subcolor);
}
- if (subopts) free(subopts);
- if (booleans) free(booleans);
+ free(subopts);
+ free(booleans);
if (strings) {
for (i=0; i<nstrings; i++)
- if (strings[i])
- free(strings[i]);
+ free(strings[i]);
free(strings);
}
- if (osdcolor) free(osdcolor);
- if (subcolor) free(subcolor);
- if (helpmsg) free(helpmsg);
+ free(osdcolor);
+ free(subcolor);
+ free(helpmsg);
return retval;
}