Blame SOURCES/libgsf-glib240.patch

c9104b
From 54bc0488c9d74c9d634a8d27c8a0d4eb3b2347c1 Mon Sep 17 00:00:00 2001
c9104b
From: Lionel Landwerlin <llandwerlin@gmail.com>
c9104b
Date: Thu, 21 Nov 2013 16:13:37 +0000
c9104b
Subject: output-iconv: fix compilation by replacing g_memmove() by memmove()
c9104b
c9104b
https://bugzilla.gnome.org/show_bug.cgi?id=712827
c9104b
c9104b
diff --git a/gsf/gsf-output-iconv.c b/gsf/gsf-output-iconv.c
c9104b
index 7196727..35ad10d 100644
c9104b
--- a/gsf/gsf-output-iconv.c
c9104b
+++ b/gsf/gsf-output-iconv.c
c9104b
@@ -119,7 +119,7 @@ iconv_flush (GsfOutputIconv *ic, gboolean must_empty)
c9104b
 			ok = FALSE;
c9104b
 		} else {
c9104b
 			ic->buf_len -= bytes_read;
c9104b
-			g_memmove (ic->buf, ic->buf + bytes_read, ic->buf_len);
c9104b
+			memmove (ic->buf, ic->buf + bytes_read, ic->buf_len);
c9104b
 
c9104b
 			ok = gsf_output_write (ic->sink, bytes_written, data);
c9104b
 			if (!ok) {
c9104b
-- 
c9104b
cgit v0.10.1
c9104b