summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/ad_libvorbis.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/ad_libvorbis.c')
-rw-r--r--libmpcodecs/ad_libvorbis.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/libmpcodecs/ad_libvorbis.c b/libmpcodecs/ad_libvorbis.c
index 9bee3678da..e8c25a1887 100644
--- a/libmpcodecs/ad_libvorbis.c
+++ b/libmpcodecs/ad_libvorbis.c
@@ -8,10 +8,6 @@
#include "config.h"
#include "ad_internal.h"
-#ifdef USE_SETLOCALE
-#include <locale.h>
-#endif
-
#ifdef HAVE_OGGVORBIS
static ad_info_t info =
@@ -50,13 +46,7 @@ static int read_vorbis_comment( char* ptr, char* comment, char* format, ... ) {
va_start( va, format );
clen = strlen( comment );
-#ifdef USE_SETLOCALE
- setlocale( LC_NUMERIC, "C" );
-#endif
ret = strncasecmp( ptr, comment, clen) == 0 ? vsscanf( ptr+clen, format, va ) : 0;
-#ifdef USE_SETLOCALE
- setlocale( LC_NUMERIC, "" );
-#endif
va_end( va );
return ret;