~ubuntu-branches/ubuntu/saucy/network-manager-applet/saucy-updates

« back to all changes in this revision

Viewing changes to src/applet-device-wifi.c

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-09-20 16:40:24 UTC
  • Revision ID: package-import@ubuntu.com-20120920164024-d0kluun4mlexvzm6
Tags: 0.9.6.2-0ubuntu5
* debian/patches/nm-applet-use-indicator.patch: Plug two small leaks.
* debian/patches/lp1048520_delay_pin_dialog_in_greeter.patch: Delay PIN
  dialog when in greeter mode; it shouldn't show unless a user goes to
  activate a mobile connection which needs unlocking. (LP: #1048520)

Show diffs side-by-side

added added

removed removed

Lines of Context:
476
476
out:
477
477
        atk_object_set_name (gtk_widget_get_accessible (GTK_WIDGET (item)), icon_desc->str);
478
478
        g_free (ssid);
479
 
        g_string_free (icon_desc, FALSE);
 
479
        g_string_free (icon_desc, TRUE);
480
480
}
481
481
#endif
482
482
 
915
915
                GSList *dupes = NULL;
916
916
                const char *path;
917
917
 
918
 
                dupes = g_object_get_data (G_OBJECT (dup_data.found), "dupes");
 
918
                dupes = g_object_steal_data (G_OBJECT (dup_data.found), "dupes");
919
919
                path = nm_object_get_path (NM_OBJECT (ap));
920
920
                dupes = g_slist_prepend (dupes, g_strdup (path));
 
921
                g_object_set_data_full (G_OBJECT (dup_data.found), "dupes", (gpointer) dupes, (GDestroyNotify) clear_dupes_list);
921
922
#endif
922
923
                return NULL;
923
924
        }