~ubuntu-branches/ubuntu/wily/caja/wily

« back to all changes in this revision

Viewing changes to eel/eel-string.c

  • Committer: Package Import Robot
  • Author(s): John Paul Adrian Glaubitz, Martin Wimpress, John Paul Adrian Glaubitz
  • Date: 2015-08-10 13:39:55 UTC
  • mfrom: (1.2.1) (9.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20150810133955-b2uyptg7cf8rn8su
Tags: 1.10.3-1
[ Martin Wimpress ]
* New upstream release.
* debian/caja-common.install:
  + Add common files.
* debian/caja.install:
  + Remove common files.
* debian/libcaja-extension-dev.install:
  + Add usr/share/gtk-doc.
* debian/rules:
  + Add --enable-gtk-doc.
  + Remove dfsg suffix.
* debian/watch:
  + Remove dfsg suffix.

[ John Paul Adrian Glaubitz ]
* Fix spelling in debian/control (allows to -> allows one to).
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
988
988
    {
989
989
        G_LOCK (unique_ref_strs);
990
990
        /* Need to recheck after taking lock to avoid races with _get_unique() */
991
 
        if (g_atomic_int_exchange_and_add (count, -1) == 0x80000001)
 
991
        if (g_atomic_int_add (count, -1) == 0x80000001)
992
992
        {
993
993
            g_hash_table_remove (unique_ref_strs, (char *)str);
994
994
            g_free ((char *)count);