]> www.fi.muni.cz Git - evince.git/commitdiff
Remove unnecessary NULL check; g_strdup() is NULL-safe.
authorChristian Persch <chpe@src.gnome.org>
Sun, 15 Feb 2009 13:52:29 +0000 (13:52 +0000)
committerChristian Persch <chpe@src.gnome.org>
Sun, 15 Feb 2009 13:52:29 +0000 (13:52 +0000)
* libdocument/ev-document.c: (ev_document_info_copy): Remove
unnecessary NULL check; g_strdup() is NULL-safe.

svn path=/trunk/; revision=3448

ChangeLog
libdocument/ev-document.c

index 55d918455ed56cdfd236f95c423bcd4bd7b7b2c9..195bc2d19a9e23d242ac8ce3a195bc9f3e75d0fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-14  Christian Persch  <chpe@gnome.org>
+
+       * libdocument/ev-document.c: (ev_document_info_copy): Remove
+       unnecessary NULL check; g_strdup() is NULL-safe.
+
 2009-02-14  Christian Persch  <chpe@gnome.org>
 
        * libdocument/ev-document-factory.c: (get_document_from_uri): Document
index 63dae75d63171b47ea4b24e9daca76199a015d1b..e9085bea5fd0b72d625ff22e9898f227baa99999 100644 (file)
@@ -239,15 +239,15 @@ ev_document_info_copy (EvDocumentInfo *info)
        g_return_val_if_fail (info != NULL, NULL);
 
        copy = g_new0 (EvDocumentInfo, 1);
-       copy->title = info->title ? g_strdup (info->title) : NULL;
-       copy->format = info->format ? g_strdup (info->format) : NULL;
-       copy->author = info->author ? g_strdup (info->author) : NULL;
-       copy->subject = info->subject ? g_strdup (info->subject) : NULL;
-       copy->keywords = info->keywords ? g_strdup (info->keywords) : NULL;
-       copy->security = info->security ? g_strdup (info->security) : NULL;
-       copy->creator = info->creator ? g_strdup (info->creator) : NULL;
-       copy->producer = info->producer ? g_strdup (info->producer) : NULL;
-       copy->linearized = info->linearized ? g_strdup (info->linearized) : NULL;
+       copy->title = g_strdup (info->title);
+       copy->format = g_strdup (info->format);
+       copy->author = g_strdup (info->author);
+       copy->subject = g_strdup (info->subject);
+       copy->keywords = g_strdup (info->keywords);
+       copy->security = g_strdup (info->security);
+       copy->creator = g_strdup (info->creator);
+       copy->producer = g_strdup (info->producer);
+       copy->linearized = g_strdup (info->linearized);
        
        copy->creation_date = info->creation_date;
        copy->modified_date = info->modified_date;
@@ -298,6 +298,3 @@ ev_rect_cmp (EvRectangle *a,
                  (ABS (a->x2 - b->x2) < EPSILON) &&
                  (ABS (a->y2 - b->y2) < EPSILON));
 }
-
-
-