~ubuntu-branches/ubuntu/vivid/gnash/vivid-proposed

« back to all changes in this revision

Viewing changes to gui/fb/fb.cpp

  • Committer: Package Import Robot
  • Author(s): Gabriele Giacone
  • Date: 2012-06-30 02:35:32 UTC
  • mfrom: (1.1.20)
  • Revision ID: package-import@ubuntu.com-20120630023532-go61oics8o04jek1
Tags: 0.8.11~git20120629-1
* Git snapshot.
  + IPv6 support.
  + Fix FTBFS with gcc 4.7 and clang.
  + Fix opening of external URL with gnash standalone.
* Remove gstreamer0.10-fluendo-mp3 from runtime deps (Closes: #679527).
* Use sensible-browser instead of xdg-open (Closes: #597195).
* Set NoDiplay=true in desktop icons (Closes: #679573). 
* Switch source and binary to xz compression.
* Remove gcc4.7 and CVE-2012-1175 patches.
* Add hardening lintian overrides.

Show diffs side-by-side

added added

removed removed

Lines of Context:
553
553
    if (ioctl(fd, VT_GETSTATE, &vts) == -1) {
554
554
        log_error(_("Could not get current VT state"));
555
555
        close(_fd);
 
556
        close(fd);
556
557
        return false;
557
558
    }
558
559
    
674
675
    if (ioctl(fd, VT_ACTIVATE, _original_vt)) {
675
676
        log_error(_("Could not activate VT number %d"), _original_vt);
676
677
        close(_fd);
 
678
        close(fd);
677
679
        return false;
678
680
    }
679
681