~ubuntu-branches/ubuntu/intrepid/rhythmbox/intrepid

« back to all changes in this revision

Viewing changes to backends/gstreamer/rb-encoder-gst.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-09-03 10:54:50 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20080903105450-mslsln15n2ap6g7o
Tags: 0.11.6svn20080903-0ubuntu1
* New upstream snapshot:
  - doesn't crash when eject an audio player (lp: #263268)
* debian/patches/80_new_libmtp_build.patch:
  - the change is in the new version
* debian/rules:
  - don't specify a gecko variant that's not required in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
565
565
                                  NULL);
566
566
        if (info != NULL) {
567
567
                display_name = g_file_info_get_display_name (info);
568
 
                g_object_unref (info);
569
568
        }
570
569
 
571
570
        if (display_name == NULL) {
580
579
        response = gtk_dialog_run (GTK_DIALOG (dialog));
581
580
        gtk_widget_destroy (dialog);
582
581
        g_free (free_name);
 
582
        if (info != NULL) {
 
583
                g_object_unref (info);
 
584
        }
583
585
 
584
586
        return (response == GTK_RESPONSE_YES);
585
587
}