commit 3f7775201f3acb3f9755f6bd927c3fee774fda81
parent da6b880ba7bd2ab959aa45fc3159a1a0d15faeb6
Author: sin <sin@2f30.org>
Date: Fri, 26 Dec 2014 18:24:36 +0000
Don't bother initializing cursect
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/vorbis.c b/vorbis.c
@@ -23,7 +23,6 @@ vorbisopen(const char *name)
int r;
vorbis_info *vi;
- cursect = 0;
r = ov_fopen(name, &vf);
if (r < 0) {
warnx("ov_fopen: failed");
@@ -70,7 +69,6 @@ vorbisclose(void)
r = -1;
if (output->close() < 0)
r = -1;
- cursect = 0;
return r;
}