summaryrefslogtreecommitdiff
path: root/src/up-history.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/up-history.c')
-rw-r--r--src/up-history.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/up-history.c b/src/up-history.c
index 945db8f..08e101b 100644
--- a/src/up-history.c
+++ b/src/up-history.c
@@ -213,6 +213,12 @@ up_history_copy_array_timespan (const GPtrArray *array, guint timespan)
if (array->len == 0)
return NULL;
+ /* no limit on data */
+ if (timespan == 0) {
+ array_new = g_ptr_array_ref ((GPtrArray *) array);
+ goto out;
+ }
+
/* new data */
array_new = g_ptr_array_new ();
g_get_current_time (&timeval);
@@ -225,7 +231,7 @@ up_history_copy_array_timespan (const GPtrArray *array, guint timespan)
if (timeval.tv_sec - up_history_item_get_time (item) < timespan)
g_ptr_array_add (array_new, g_object_ref (item));
}
-
+out:
return array_new;
}