[vlc-commits] Android: implement vlc_strerror and vlc_strerror_c

Edward Wang git at videolan.org
Sat Jan 11 23:21:47 CET 2014


vlc | branch: master | Edward Wang <edward.c.wang at compdigitec.com> | Tue Jan  7 22:10:20 2014 -0500| [612cfb1952e47ab1a4a708df5415e79823fa6838] | committer: Rafaël Carré

Android: implement vlc_strerror and vlc_strerror_c

Android does not have strerror_l() and won't have it any time soon.

Localization is not required as these messages will never be displayed.

Signed-off-by: Rafaël Carré <funman at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=612cfb1952e47ab1a4a708df5415e79823fa6838
---

 src/Makefile.am     |    1 +
 src/android/error.c |   39 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/src/Makefile.am b/src/Makefile.am
index aeff20a..474da25 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -259,6 +259,7 @@ SOURCES_libvlc_darwin = \
 SOURCES_libvlc_android = \
 	android/dirs.c \
 	android/thread.c \
+	android/error.c \
 	posix/filesystem.c \
 	android/netconf.c \
 	posix/plugin.c \
diff --git a/src/android/error.c b/src/android/error.c
new file mode 100644
index 0000000..f4e3637
--- /dev/null
+++ b/src/android/error.c
@@ -0,0 +1,39 @@
+/*****************************************************************************
+ * error.c: Android error messages formatting
+ *****************************************************************************
+ * Copyright © 2014 Edward Wang
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <string.h>
+
+#include <vlc_common.h>
+
+const char* vlc_strerror(int errnum)
+{
+    return vlc_strerror_c(errnum);
+}
+
+const char* vlc_strerror_c(int errnum)
+{
+    static __thread char android_buf[100];
+    strerror_r(errnum, android_buf, 100);
+    return android_buf;
+}



More information about the vlc-commits mailing list