~ubuntu-branches/ubuntu/vivid/ibus/vivid

« back to all changes in this revision

Viewing changes to tools/main.vala

  • Committer: Package Import Robot
  • Author(s): Osamu Aoki
  • Date: 2014-01-26 16:28:28 UTC
  • mfrom: (1.5.4)
  • Revision ID: package-import@ubuntu.com-20140126162828-un06o3yylyb9xonf
Tags: 1.5.5-1
* New upstream release.
  - CVE-2013-4509 (also with FC19 patch).  Closes: #729065
  - Update ibus-setup message. Closes: #729472
* Sync with ibus-1.5.5-1.fc19.src.rpm
* Update debian/rules using DEB_*_MAINT_APPEND (compat=9).
* Update README.Debian. Closes: #732434
* Update Standards-Version: 3.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
}
272
272
 
273
273
int print_address(string[] argv) {
274
 
    print("%s\n", IBus.get_address());
 
274
    string address = IBus.get_address();
 
275
    print("%s\n", address != null ? address : "(null)");
275
276
    return Posix.EXIT_SUCCESS;
276
277
}
277
278