platform/upstream/glib.git
11 years agoUpdated Indonesian translation
Andika Triwidada [Sat, 15 Sep 2012 04:51:46 +0000 (11:51 +0700)]
Updated Indonesian translation

11 years agoUpdated Galician translations
Fran Diéguez [Fri, 14 Sep 2012 23:43:08 +0000 (01:43 +0200)]
Updated Galician translations

11 years agoFix the doc build
Matthias Clasen [Fri, 14 Sep 2012 23:40:24 +0000 (19:40 -0400)]
Fix the doc build

11 years agoUpdated Greek translation
Tom Tryfonidis [Fri, 14 Sep 2012 16:50:21 +0000 (19:50 +0300)]
Updated Greek translation

11 years agoUpdated Belarusian translation.
Ihar Hrachyshka [Fri, 14 Sep 2012 10:26:34 +0000 (13:26 +0300)]
Updated Belarusian translation.

11 years agoUpdate French translation
Alexandre Franke [Fri, 14 Sep 2012 07:44:48 +0000 (09:44 +0200)]
Update French translation

11 years agoUpdated Serbian translation
Мирослав Николић [Fri, 14 Sep 2012 07:23:53 +0000 (09:23 +0200)]
Updated Serbian translation

11 years agoAssamese translation updated
Nilamdyuti Goswami [Fri, 14 Sep 2012 06:23:11 +0000 (11:53 +0530)]
Assamese translation updated

11 years agoupdate Punjabi Translation
A S Alam [Fri, 14 Sep 2012 02:00:04 +0000 (07:30 +0530)]
update Punjabi Translation

11 years agoUpdated Polish translation
Piotr Drąg [Thu, 13 Sep 2012 22:53:20 +0000 (00:53 +0200)]
Updated Polish translation

11 years agoCVE-2012-3524: Hardening for being run in a setuid environment
Colin Walters [Wed, 22 Aug 2012 18:26:11 +0000 (14:26 -0400)]
CVE-2012-3524: Hardening for being run in a setuid environment

Some programs attempt to use libglib (or even libgio) when setuid.
For a long time, GTK+ simply aborted if launched in this
configuration, but we never had a real policy for GLib.

I'm not sure whether we should advertise such support.  However, given
that there are real-world programs that do this currently, we can make
them safer with not too much effort.

Better to fix a problem caused by an interaction between two
components in *both* places if possible.

This patch adds a private function g_check_setuid() which is used to
first ensure we don't run an external dbus-launch binary if
DBUS_SESSION_BUS_ADDRESS isn't set.

Second, we also ensure the local VFS is used in this case.  The
gdaemonvfs extension point will end up talking to the session bus
which is typically undesirable in a setuid context.

Implementing g_check_setuid() is interesting - whether or not we're
running in a privilege-escalated path is operating system specific.
Note that GTK+'s code to check euid versus uid worked historically on
Unix, more modern systems have filesystem capabilities and SELinux
domain transitions, neither of which are captured by the uid
comparison.

On Linux/glibc, the way this works is that the kernel sets an
AT_SECURE flag in the ELF auxiliary vector, and glibc looks for it on
startup.  If found, then glibc sets a public-but-undocumented
__libc_enable_secure variable which we can use.  Unfortunately, while
it *previously* worked to check this variable, a combination of newer
binutils and RPM break it:
http://www.openwall.com/lists/owl-dev/2012/08/14/1

So for now on Linux/glibc, we fall back to the historical Unix version
until we get glibc fixed.

On some BSD variants, there is a issetugid() function.  On other Unix
variants, we fall back to what GTK+ has been doing.

Reported-By: Sebastian Krahmer <krahmer@suse.de>
Signed-off-by: Colin Walters <walters@verbum.org>
11 years agoAdd api to get the generic icon name for a mime type
William Jon McCann [Mon, 10 Sep 2012 19:16:58 +0000 (15:16 -0400)]
Add api to get the generic icon name for a mime type

https://bugzilla.gnome.org/show_bug.cgi?id=683744

11 years agoUpdated German translation
Mario Blättermann [Thu, 13 Sep 2012 09:05:59 +0000 (11:05 +0200)]
Updated German translation

11 years agoFix regression in g_shell_parse_argv()
Alexander Larsson [Thu, 13 Sep 2012 08:13:04 +0000 (10:13 +0200)]
Fix regression in g_shell_parse_argv()

The commit in 6e4acf44b3a943906432a2bf55223ac107d8e0c2 broke
the fallthrough case for '\\' when it changed the '#' case.

This caused issues like this:
  https://bugzilla.gnome.org/show_bug.cgi?id=683821

https://bugzilla.gnome.org/show_bug.cgi?id=562907

11 years agoUpdated Marathi Translations
Sandeep Sheshrao Shedmake [Wed, 12 Sep 2012 10:19:27 +0000 (15:49 +0530)]
Updated Marathi Translations

11 years agoMove GIO-specific information to the GIO docs
Matthias Clasen [Wed, 12 Sep 2012 03:14:39 +0000 (23:14 -0400)]
Move GIO-specific information to the GIO docs

11 years agoAdd a section about writing GLib applications
Matthias Clasen [Wed, 12 Sep 2012 02:41:18 +0000 (22:41 -0400)]
Add a section about writing GLib applications

For now, this includes some information about threads and security.

11 years agoDrop GVFS_INOTIFY_DIAG debug feature
Matthias Clasen [Wed, 12 Sep 2012 00:22:26 +0000 (20:22 -0400)]
Drop GVFS_INOTIFY_DIAG debug feature

Just not a good idea to have this in production code.

11 years agoAssamese translation updated
Nilamdyuti Goswami [Tue, 11 Sep 2012 13:25:26 +0000 (18:55 +0530)]
Assamese translation updated

11 years agoFix gdbus connection annotations
Thomas Bechtold [Tue, 11 Sep 2012 05:45:24 +0000 (07:45 +0200)]
Fix gdbus connection annotations

g_dbus_connection_call_with_unix_fd_list_sync () and
g_dbus_connection_call_sync () should allow None for the
bus_name parameter.

https://bugzilla.gnome.org/show_bug.cgi?id=683771

Signed-off-by: Richard Hughes <richard@hughsie.com>
11 years agoUpdated French translation by Alexandre Franke and Claude Paroz
Claude Paroz [Mon, 10 Sep 2012 09:01:39 +0000 (11:01 +0200)]
Updated French translation by Alexandre Franke and Claude Paroz

11 years agogwin32mount.c: Fix syntax error
LRN [Sun, 9 Sep 2012 14:49:06 +0000 (10:49 -0400)]
gwin32mount.c: Fix syntax error

Signed-off-by: Colin Walters <walters@verbum.org>
https://bugzilla.gnome.org/show_bug.cgi?id=683641

11 years agoUpdated Portuguese translation
Duarte Loreto [Sun, 9 Sep 2012 00:30:24 +0000 (01:30 +0100)]
Updated Portuguese translation

11 years agoUpdated Slovenian translation
Martin Srebotnjak [Sat, 8 Sep 2012 18:40:24 +0000 (20:40 +0200)]
Updated Slovenian translation

11 years agoG_DEFINE_QUARK: fix up some implementation issues
Ryan Lortie [Wed, 5 Sep 2012 00:54:33 +0000 (20:54 -0400)]
G_DEFINE_QUARK: fix up some implementation issues

https://bugzilla.gnome.org/show_bug.cgi?id=683360

11 years agoUpdated Czech translation
Marek Černocký [Sat, 8 Sep 2012 09:17:27 +0000 (11:17 +0200)]
Updated Czech translation

11 years agoUpdated Belarusian translation.
Ihar Hrachyshka [Fri, 7 Sep 2012 15:27:47 +0000 (18:27 +0300)]
Updated Belarusian translation.

11 years agoUpdated Hebrew translation.
Yaron Shahrabani [Fri, 7 Sep 2012 13:52:28 +0000 (16:52 +0300)]
Updated Hebrew translation.

11 years agoUpdated Serbian translation
Мирослав Николић [Thu, 6 Sep 2012 20:34:36 +0000 (22:34 +0200)]
Updated Serbian translation

11 years agotests/gvariant: Fix test on big endian architectures
Colin Walters [Wed, 5 Sep 2012 13:04:58 +0000 (09:04 -0400)]
tests/gvariant: Fix test on big endian architectures

We need to ensure we get the exact same byte-level GVariant, so
byteswap on big endian architectures.

https://bugzilla.gnome.org/show_bug.cgi?id=683384

11 years agoBox GTimeZone to make it introspectable
Martin Pitt [Mon, 3 Sep 2012 19:43:50 +0000 (21:43 +0200)]
Box GTimeZone to make it introspectable

https://bugzilla.gnome.org/show_bug.cgi?id=683167

11 years agoUpdated British English translation
Bruce Cowan [Wed, 5 Sep 2012 12:13:54 +0000 (13:13 +0100)]
Updated British English translation

11 years agoUpdated Traditional Chinese translation(Hong Kong and Taiwan)
Chao-Hsiung Liao [Wed, 5 Sep 2012 11:52:32 +0000 (19:52 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)

11 years agoUpdated Indonesian translation
Dirgita [Tue, 4 Sep 2012 12:47:46 +0000 (19:47 +0700)]
Updated Indonesian translation

11 years agoBump version
Matthias Clasen [Mon, 3 Sep 2012 20:27:19 +0000 (16:27 -0400)]
Bump version

11 years ago2.33.10 2.33.12
Matthias Clasen [Mon, 3 Sep 2012 19:14:18 +0000 (15:14 -0400)]
2.33.10

11 years agoRevert "Updated Spanish translation"
Daniel Mustieles [Mon, 3 Sep 2012 14:18:23 +0000 (16:18 +0200)]
Revert "Updated Spanish translation"

This reverts commit bc036bf9789556f37b2872baaee3c126af7e6e3f.

11 years agoUpdated Spanish translation
Daniel Mustieles [Mon, 3 Sep 2012 14:15:35 +0000 (16:15 +0200)]
Updated Spanish translation

11 years agoRevert "xdgmime: plug a small leak"
Dan Winship [Mon, 3 Sep 2012 14:06:13 +0000 (10:06 -0400)]
Revert "xdgmime: plug a small leak"

This reverts commit 4e7031f073db2df7297feab35c9d353b0b3977d8.

The string actually does get freed somewhere else, at least in some
cases. Can be looked at again later if this reintroduces a leak.

https://bugzilla.gnome.org/show_bug.cgi?id=683270

11 years agoUpdated Spanish translation
Daniel Mustieles [Mon, 3 Sep 2012 14:06:57 +0000 (16:06 +0200)]
Updated Spanish translation

11 years agoupdate .gitignore
Dan Winship [Mon, 3 Sep 2012 12:56:10 +0000 (08:56 -0400)]
update .gitignore

11 years agogio/tests: fix leaks
Dan Winship [Sat, 25 Aug 2012 00:43:54 +0000 (20:43 -0400)]
gio/tests: fix leaks

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agogio/tests/cancellable: fix to still work when running slowly
Dan Winship [Fri, 24 Aug 2012 21:11:38 +0000 (17:11 -0400)]
gio/tests/cancellable: fix to still work when running slowly

The test was assuming that all cancelled ops would finish within a
certain amount of time, but this often failed under valgrind. Instead,
just run the loop until all of the ops have actually finished.

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agogio/tests: port some stuff to g_test_expect_message()
Dan Winship [Fri, 24 Aug 2012 21:11:17 +0000 (17:11 -0400)]
gio/tests: port some stuff to g_test_expect_message()

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agog_file_copy: plug a leak
Dan Winship [Fri, 24 Aug 2012 21:08:38 +0000 (17:08 -0400)]
g_file_copy: plug a leak

The fallback copy code was leaking the GFileInfo if it didn't have
G_FILE_ATTRIBUTE_STANDARD_TYPE.

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agoGDesktopAppInfo: fix leaks
Dan Winship [Fri, 24 Aug 2012 21:06:46 +0000 (17:06 -0400)]
GDesktopAppInfo: fix leaks

g_desktop_app_info_ensure_saved() was leaking the file contents.

_g_desktop_app_info_launch_uris_internal() was leaking the session bus
on error.

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agoxdgmime: plug a small leak
Dan Winship [Fri, 24 Aug 2012 21:03:35 +0000 (17:03 -0400)]
xdgmime: plug a small leak

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agogobject/tests: plug leaks
Dan Winship [Thu, 23 Aug 2012 20:53:13 +0000 (16:53 -0400)]
gobject/tests: plug leaks

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agogobject/tests: use g_test_expect_messages()
Dan Winship [Mon, 27 Aug 2012 11:45:08 +0000 (07:45 -0400)]
gobject/tests: use g_test_expect_messages()

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agoUpdated Russian translation
Yuri Kozlov [Mon, 3 Sep 2012 06:16:21 +0000 (10:16 +0400)]
Updated Russian translation

11 years agoUpdated Polish translation
Piotr Drąg [Sun, 2 Sep 2012 23:20:56 +0000 (01:20 +0200)]
Updated Polish translation

11 years agoAdd new api to symbol lists and docs
Matthias Clasen [Wed, 29 Aug 2012 04:01:15 +0000 (00:01 -0400)]
Add new api to symbol lists and docs

https://bugzilla.gnome.org/show_bug.cgi?id=682849

11 years agoAdd a threaded test for g_object_replace_data
Matthias Clasen [Sat, 1 Sep 2012 04:20:22 +0000 (00:20 -0400)]
Add a threaded test for g_object_replace_data

This is the threaded atomic add test from glib/tests/atomic.c,
redone using qdata instead of an atomic int to store the values.

11 years agoAdd some tests for new object data api
Matthias Clasen [Wed, 29 Aug 2012 03:56:01 +0000 (23:56 -0400)]
Add some tests for new object data api

These are non-threaded, but the do test dup and destroy somewhat.

https://bugzilla.gnome.org/show_bug.cgi?id=682849

11 years agoAdd an atomic compare-and-exchange operation for object data
Matthias Clasen [Tue, 28 Aug 2012 10:45:30 +0000 (06:45 -0400)]
Add an atomic compare-and-exchange operation for object data

This is useful when using object data in thread-safe libraries.

https://bugzilla.gnome.org/show_bug.cgi?id=682849

11 years agoAdd compare-and exchange for data lists
Matthias Clasen [Tue, 28 Aug 2012 10:44:00 +0000 (06:44 -0400)]
Add compare-and exchange for data lists

Also, make it possible to get a 'new ref' on a datalist member
in a race-free way.
This is useful when using object data in thread-safe libraries.

https://bugzilla.gnome.org/show_bug.cgi?id=682849

11 years agoUpdated Latvian translation
Rūdolfs Mazurs [Sun, 2 Sep 2012 13:02:50 +0000 (16:02 +0300)]
Updated Latvian translation

11 years agoUpdated Lithuanian translation
Aurimas Černius [Sun, 2 Sep 2012 12:39:16 +0000 (15:39 +0300)]
Updated Lithuanian translation

11 years agoFix gtk-doc for g_app_info_get_supported_types
Paolo Borelli [Sun, 2 Sep 2012 10:25:50 +0000 (12:25 +0200)]
Fix gtk-doc for g_app_info_get_supported_types

11 years agogdbus-codegen: avoid error when wrong interface is provided to --annotate
Aleksander Morgado [Fri, 31 Aug 2012 09:41:53 +0000 (11:41 +0200)]
gdbus-codegen: avoid error when wrong interface is provided to --annotate

If the interface given cannot be matched, `iface_obj' was left uninitialized and
the iface_obj == None check would end up crashing:

Traceback (most recent call last):
  File "/usr/bin/gdbus-codegen", line 41, in <module>
    sys.exit(codegen_main.codegen_main())
  File "/usr/lib64/gdbus-2.0/codegen/codegen_main.py", line 175, in codegen_main
    apply_annotations(all_ifaces, opts.annotate)
  File "/usr/lib64/gdbus-2.0/codegen/codegen_main.py", line 146, in apply_annotations
    apply_annotation(iface_list, iface, None, None, None, None, key, value)
  File "/usr/lib64/gdbus-2.0/codegen/codegen_main.py", line 64, in apply_annotation
    if iface_obj == None:
UnboundLocalError: local variable 'iface_obj' referenced before assignment

Fixes https://bugzilla.gnome.org/show_bug.cgi?id=683088

11 years agoFix shell tests
Matthias Clasen [Sat, 1 Sep 2012 03:22:16 +0000 (23:22 -0400)]
Fix shell tests

11 years agoUpdated Norwegian bokmål translation
Kjartan Maraas [Sat, 1 Sep 2012 08:42:05 +0000 (10:42 +0200)]
Updated Norwegian bokmål translation

11 years agoUpdated Vietnamese translation
Nguyễn Thái Ngọc Duy [Sat, 1 Sep 2012 06:17:05 +0000 (13:17 +0700)]
Updated Vietnamese translation

11 years agopo/vi: import from Damned Lies
Nguyễn Thái Ngọc Duy [Sat, 1 Sep 2012 06:16:36 +0000 (13:16 +0700)]
po/vi: import from Damned Lies

11 years agoUpdated Galician translations
Fran Diéguez [Fri, 31 Aug 2012 19:00:52 +0000 (21:00 +0200)]
Updated Galician translations

11 years agoBump max time in test_method_calls_on_proxy() test
Martin Pitt [Mon, 20 Aug 2012 04:02:31 +0000 (06:02 +0200)]
Bump max time in test_method_calls_on_proxy() test

On slower platforms, the overhead of the 240 D-BUS Sleep calls is larger than
the current maximum of 6 seconds. A run on a Panda board sometimes fails with

  ERROR:/build/buildd/glib2.0-2.33.8/./gio/tests/gdbus-threading.c:409:test_method_calls_on_proxy:
  assertion failed (elapsed_msec < 6000): (7365 < 6000)

Bump maximum time to 8 seconds to be more resilient to this.

https://bugzilla.gnome.org/show_bug.cgi?id=682222

11 years agoUpdated Greek translation
Tom Tryfonidis [Fri, 31 Aug 2012 08:08:42 +0000 (11:08 +0300)]
Updated Greek translation

11 years agoUpdated Polish translation
Piotr Drąg [Thu, 30 Aug 2012 15:59:33 +0000 (17:59 +0200)]
Updated Polish translation

11 years agoAdd ability to get symbolic icon for content type
William Jon McCann [Tue, 28 Aug 2012 23:22:01 +0000 (19:22 -0400)]
Add ability to get symbolic icon for content type

https://bugzilla.gnome.org/show_bug.cgi?id=682101

11 years agoAdd symbolic icon support to gfileinfo
William Jon McCann [Tue, 28 Aug 2012 22:56:53 +0000 (18:56 -0400)]
Add symbolic icon support to gfileinfo

https://bugzilla.gnome.org/show_bug.cgi?id=682101

11 years agoAdd symbolic icon support to drive, volume, and mount
William Jon McCann [Tue, 28 Aug 2012 19:37:43 +0000 (15:37 -0400)]
Add symbolic icon support to drive, volume, and mount

We need symbolic icon support for display in Nautilus.

https://bugzilla.gnome.org/show_bug.cgi?id=682101

11 years agogdbus-tool: Check return value of strrchr()
Rui Matos [Wed, 29 Aug 2012 17:18:45 +0000 (19:18 +0200)]
gdbus-tool: Check return value of strrchr()

Fixes a crash when invoking gdbus like:

$ gdbus emit --session -o / -s Foo

https://bugzilla.gnome.org/show_bug.cgi?id=682965

11 years agoUpdate gspawn-win*helper* Visual C++ projects
Chun-wei Fan [Thu, 30 Aug 2012 09:14:13 +0000 (17:14 +0800)]
Update gspawn-win*helper* Visual C++ projects

Add GLIB_COMPILATION to the preprocessor definitions to fix the build.

11 years agogshell: Fix parsing of comments in command lines.
Dominique Leuenberger [Fri, 17 Aug 2012 09:10:41 +0000 (11:10 +0200)]
gshell: Fix parsing of comments in command lines.

Fixes bug 562907

11 years agoappinfo: fix annotations for g_app_info_launch and g_app_info_launch_uris
Cosimo Cecchi [Wed, 29 Aug 2012 18:46:11 +0000 (14:46 -0400)]
appinfo: fix annotations for g_app_info_launch and g_app_info_launch_uris

The files/uris parameters for these functions can be NULL, so we need an
allow-none annotation here.

11 years agoSwitch all open() calls to use g_open()
Colin Walters [Mon, 27 Aug 2012 22:30:06 +0000 (18:30 -0400)]
Switch all open() calls to use g_open()

Because it now handles EINTR.  And we should do so.  While most people
use Linux, which tries very hard to avoid propagating EINTR back up
into userspace, it can still happen.

https://bugzilla.gnome.org/show_bug.cgi?id=682833

11 years agoxdgmime: Handle EINTR in open()
Colin Walters [Mon, 27 Aug 2012 22:22:26 +0000 (18:22 -0400)]
xdgmime: Handle EINTR in open()

https://bugzilla.gnome.org/show_bug.cgi?id=682833

11 years agogio: don't quote quark names for G_DEFINE_QUARK
Cosimo Cecchi [Tue, 28 Aug 2012 17:15:29 +0000 (13:15 -0400)]
gio: don't quote quark names for G_DEFINE_QUARK

11 years agoglib: don't quote quark names for G_DEFINE_QUARK
Cosimo Cecchi [Tue, 28 Aug 2012 17:15:56 +0000 (13:15 -0400)]
glib: don't quote quark names for G_DEFINE_QUARK

11 years agogquark: clarify G_DEFINE_QUARK docs about the use of quotes
Cosimo Cecchi [Tue, 28 Aug 2012 17:14:35 +0000 (13:14 -0400)]
gquark: clarify G_DEFINE_QUARK docs about the use of quotes

Use the term "name" instead of "string" in the documentation, and add a
note explaining double quotes shouldn't be used for the quark name.

11 years agoAdd missing includes
Matthias Clasen [Tue, 28 Aug 2012 09:52:24 +0000 (05:52 -0400)]
Add missing includes

11 years agoUse G_DEFINE_QUARK for quarks in GIO
Matthias Clasen [Tue, 28 Aug 2012 03:42:12 +0000 (23:42 -0400)]
Use G_DEFINE_QUARK for quarks in GIO

11 years agoFix a typo in a doc comment
Matthias Clasen [Tue, 28 Aug 2012 03:37:41 +0000 (23:37 -0400)]
Fix a typo in a doc comment

11 years agoUse G_DEFINE_QUARK for GLib's own quarks
Matthias Clasen [Tue, 28 Aug 2012 03:36:42 +0000 (23:36 -0400)]
Use G_DEFINE_QUARK for GLib's own quarks

This commit just deals with glib/.
gobject/ and gio/ will be handled in separate commits.

11 years agoAdd a G_DEFINE_QUARK macro
Matthias Clasen [Tue, 28 Aug 2012 03:34:30 +0000 (23:34 -0400)]
Add a G_DEFINE_QUARK macro

https://bugzilla.gnome.org/show_bug.cgi?id=627240

11 years agoPut quarks in their own source file
Matthias Clasen [Tue, 28 Aug 2012 03:16:25 +0000 (23:16 -0400)]
Put quarks in their own source file

Just because I'm too lazy to grep every single time for the other
source file in which the quark code is hiding.

11 years agogsettings-tool: make list-recursively really recurse
Daiki Ueno [Fri, 24 Aug 2012 06:43:02 +0000 (15:43 +0900)]
gsettings-tool: make list-recursively really recurse

https://bugzilla.gnome.org/show_bug.cgi?id=682586

11 years agoGFile: Cosmetic doc changes
Matthias Clasen [Mon, 20 Aug 2012 03:50:09 +0000 (23:50 -0400)]
GFile: Cosmetic doc changes

11 years agoFix the GDBusProxy async test
Matthias Clasen [Sun, 19 Aug 2012 22:36:18 +0000 (18:36 -0400)]
Fix the GDBusProxy async test

Patch by Mike Gorse, bug
https://bugzilla.gnome.org/show_bug.cgi?id=674805

11 years agoMake async permission tests work
Matthias Clasen [Sun, 19 Aug 2012 22:35:56 +0000 (18:35 -0400)]
Make async permission tests work

11 years agoFix the gdbus-proxy async test
Mike Gorse [Thu, 26 Apr 2012 21:06:34 +0000 (16:06 -0500)]
Fix the gdbus-proxy async test

The async test had several problems:
- It created a proxy and did not launch a main loop, meaning that its
  callback would usually not get called, or, if it did get called, the
test harness would have taken down the connection already, causing an
assertion failure when the proxy had an error.
- It was dependent on the proxy test to set up the server and would fail
  because some properties were modified by that test.

https://bugzilla.gnome.org/show_bug.cgi?id=674805

11 years agogstdio: Harden g_open() against EINTR
Colin Walters [Mon, 27 Aug 2012 18:37:21 +0000 (14:37 -0400)]
gstdio: Harden g_open() against EINTR

Noticed by code inspection, when auditing some of my code for EINTR
handling.

https://bugzilla.gnome.org/show_bug.cgi?id=682819

11 years agogvariant: Add tests for exact SHA256 checksums
Colin Walters [Wed, 28 Mar 2012 17:53:37 +0000 (13:53 -0400)]
gvariant: Add tests for exact SHA256 checksums

I'd like to use GVariant as a data format in my userspace filesystem,
and having the actual bits be stable means I can reliably compute
cryptographic checksums.

This updated patch removes vardict checks, because Ryan wants the
flexibility to change them in the future.

https://bugzilla.gnome.org/show_bug.cgi?id=673012

11 years agoGVariantType: gut g_variant_type_check()
Ryan Lortie [Mon, 27 Aug 2012 20:12:30 +0000 (16:12 -0400)]
GVariantType: gut g_variant_type_check()

This function is causing an insane amount of wasted time on some
real-world profiles and it's pretty useless since we already have
GVariantType (as a type different from a string) for the purpose of
static type safety.

Disable it for now.  We can possibly turn this back on again if we solve
bug #544026.

https://bugzilla.gnome.org/show_bug.cgi?id=679835

11 years agoImplemented FUEL entries to Assamese translation
Nilamdyuti Goswami [Mon, 27 Aug 2012 18:09:52 +0000 (23:39 +0530)]
Implemented FUEL entries to Assamese translation

11 years agoglib/tests: fix leaks
Dan Winship [Thu, 23 Aug 2012 16:48:49 +0000 (12:48 -0400)]
glib/tests: fix leaks

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agogtestutils: add g_test_add_data_func_full()
Dan Winship [Thu, 23 Aug 2012 16:29:36 +0000 (12:29 -0400)]
gtestutils: add g_test_add_data_func_full()

Like g_test_add_data_func(), but includes a GDestroyNotify for the
test data.

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agogmain: remove unix signal watch if its GSourceFunc returns FALSE
Dan Winship [Thu, 23 Aug 2012 16:38:17 +0000 (12:38 -0400)]
gmain: remove unix signal watch if its GSourceFunc returns FALSE

g_unix_signal_watch_dispatch() was ignore the callback's return value.
Fix that.

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agogmain: don't leak child sources that are destroyed before their parents
Dan Winship [Thu, 23 Aug 2012 16:35:20 +0000 (12:35 -0400)]
gmain: don't leak child sources that are destroyed before their parents

A parent source holds refs on its children, so if the child source is
destroyed, we need to drop that ref. Fix, and reorganize to make this
all more obvious.

https://bugzilla.gnome.org/show_bug.cgi?id=682560

11 years agogmain: free source_lists when freeing GMainContext
Dan Winship [Thu, 23 Aug 2012 16:33:43 +0000 (12:33 -0400)]
gmain: free source_lists when freeing GMainContext

If a context was freed with sources still attached, those sources
correctly got destroyed, but the corresponding GSourceList structs
were being leaked.

https://bugzilla.gnome.org/show_bug.cgi?id=682560