summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ext/cairo/gsttextoverlay.c13
2 files changed, 11 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index c28320b1..e1d6c347 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-15 David Schleef <ds@schleef.org>
+
+ * ext/cairo/gsttextoverlay.c:
+ Change strcasecmp() to g_strcasecmp(). Fixes #497292.
+
2007-11-15 Wim Taymans <wim.taymans@gmail.com>
Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
diff --git a/ext/cairo/gsttextoverlay.c b/ext/cairo/gsttextoverlay.c
index bf904efe..69422a8e 100644
--- a/ext/cairo/gsttextoverlay.c
+++ b/ext/cairo/gsttextoverlay.c
@@ -22,7 +22,6 @@
#include <config.h>
#endif
#include <string.h>
-#include <strings.h>
#include <gst/video/video.h>
#include "gsttextoverlay.h"
@@ -340,11 +339,11 @@ gst_text_overlay_set_property (GObject * object, guint prop_id,
case ARG_VALIGN:{
const gchar *s = g_value_get_string (value);
- if (strcasecmp (s, "baseline") == 0)
+ if (g_strcasecmp (s, "baseline") == 0)
overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_BASELINE;
- else if (strcasecmp (s, "bottom") == 0)
+ else if (g_strcasecmp (s, "bottom") == 0)
overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_BOTTOM;
- else if (strcasecmp (s, "top") == 0)
+ else if (g_strcasecmp (s, "top") == 0)
overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_TOP;
else
g_warning ("Invalid 'valign' property value: %s", s);
@@ -353,11 +352,11 @@ gst_text_overlay_set_property (GObject * object, guint prop_id,
case ARG_HALIGN:{
const gchar *s = g_value_get_string (value);
- if (strcasecmp (s, "left") == 0)
+ if (g_strcasecmp (s, "left") == 0)
overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_LEFT;
- else if (strcasecmp (s, "right") == 0)
+ else if (g_strcasecmp (s, "right") == 0)
overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_RIGHT;
- else if (strcasecmp (s, "center") == 0)
+ else if (g_strcasecmp (s, "center") == 0)
overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_CENTER;
else
g_warning ("Invalid 'halign' property value: %s", s);