projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ae5d43
)
datetime: Fix leak in test
author
Stef Walter
<stefw@gnome.org>
Sat, 9 Nov 2013 19:29:04 +0000
(20:29 +0100)
committer
Stef Walter
<stefw@gnome.org>
Sun, 10 Nov 2013 21:42:57 +0000
(22:42 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=711751
tests/datetime.c
patch
|
blob
|
history
diff --git
a/tests/datetime.c
b/tests/datetime.c
index 6ee38c864ba75047e171658fd4cbc75425eecc08..4f2779619869dccdb26c2b6e4f32f69b9df3f494 100644
(file)
--- a/
tests/datetime.c
+++ b/
tests/datetime.c
@@
-38,6
+38,7
@@
main (int argc, char *argv[])
str = g_date_time_format (dt, fmt);
g_print ("%s\n", str);
g_free (str);
+ g_date_time_unref (dt);
return 0;
}