[gnome-color-manager] trivial: handle errors in gcm-fix-profile to deal with broken files better
- From: Richard Hughes <rhughes src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnome-color-manager] trivial: handle errors in gcm-fix-profile to deal with broken files better
- Date: Thu, 4 Feb 2010 17:13:54 +0000 (UTC)
commit 8bf24d2879e7d9430bc2121ab3efc5ed33726053
Author: Richard Hughes <richard hughsie com>
Date: Thu Feb 4 12:04:11 2010 +0000
trivial: handle errors in gcm-fix-profile to deal with broken files better
src/gcm-fix-profile.c | 25 ++++++++++++++++++++-----
1 files changed, 20 insertions(+), 5 deletions(-)
---
diff --git a/src/gcm-fix-profile.c b/src/gcm-fix-profile.c
index c8a72d5..b54002a 100644
--- a/src/gcm-fix-profile.c
+++ b/src/gcm-fix-profile.c
@@ -1,6 +1,6 @@
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
- * Copyright (C) 2009 Richard Hughes <richard hughsie com>
+ * Copyright (C) 2009-2010 Richard Hughes <richard hughsie com>
*
* Licensed under the GNU General Public License Version 2
*
@@ -25,9 +25,9 @@
#include <locale.h>
#include <lcms.h>
-/**
+/*
* gcm_fix_profile_filename:
- **/
+ */
static void
gcm_fix_profile_filename (const gchar *filename, const gchar *description)
{
@@ -41,9 +41,19 @@ gcm_fix_profile_filename (const gchar *filename, const gchar *description)
cmsCloseProfile (lcms_profile);
}
-/**
+/*
+ * gcm_fix_profile_lcms_error_cb:
+ */
+static int
+gcm_fix_profile_lcms_error_cb (int ErrorCode, const char *ErrorText)
+{
+ g_warning ("LCMS error %i: %s", ErrorCode, ErrorText);
+ return LCMS_ERRC_WARNING;
+}
+
+/*
* main:
- **/
+ */
int
main (int argc, char **argv)
{
@@ -79,6 +89,11 @@ main (int argc, char **argv)
if (files == NULL)
goto out;
+ /* setup LCMS */
+ cmsSetErrorHandler (gcm_fix_profile_lcms_error_cb);
+ cmsErrorAction (LCMS_ERROR_SHOW);
+ cmsSetLanguage ("en", "US");
+
/* show each profile */
for (i=0; files[i] != NULL; i++)
gcm_fix_profile_filename (files[i], description);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]