Commit 07d5700d authored by Cyril Mathé's avatar Cyril Mathé Committed by Rémi Denis-Courmont

Change strtof to us_strtof to avoid some problem

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 71587594
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_charset.h>
#include "vlc_aout.h" #include "vlc_aout.h"
...@@ -588,7 +589,8 @@ static int BandsCallback( vlc_object_t *p_this, char const *psz_cmd, ...@@ -588,7 +589,8 @@ static int BandsCallback( vlc_object_t *p_this, char const *psz_cmd,
break; break;
/* Read dB -20/20 */ /* Read dB -20/20 */
f = strtof( p, &psz_next ); f = us_strtof( p, &psz_next );
if( psz_next == p ) if( psz_next == p )
break; /* no conversion */ break; /* no conversion */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment