~ubuntu-branches/ubuntu/wily/libxml2/wily-proposed

« back to all changes in this revision

Viewing changes to runtest.c

  • Committer: Package Import Robot
  • Author(s): Aron Xu
  • Date: 2014-10-26 07:04:50 UTC
  • mfrom: (43.2.7 sid)
  • Revision ID: package-import@ubuntu.com-20141026070450-rmcqvcqn8peeuebs
Tags: 2.9.2+dfsg1-1
* New upstream release (Closes: #765722, CVE-2014-3660)
* Remove no-longer-needed upstream patches
* Update distro patch
* Std-ver: 3.9.5 -> 3.9.6, no change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1679
1679
    }
1680
1680
    if (ret != 0) {
1681
1681
        fprintf(stderr, "Failed to parse %s\n", filename);
1682
 
        return(1);
 
1682
        ret = 1;
 
1683
        goto done;
1683
1684
    }
1684
1685
#ifdef LIBXML_HTML_ENABLED
1685
1686
    if (options & XML_PARSE_HTML) {
1701
1702
        fprintf(stderr, "Got a difference for %s\n", filename);
1702
1703
        ret = 1;
1703
1704
    }
 
1705
 
 
1706
done:
1704
1707
    if (temp != NULL) {
1705
1708
        unlink(temp);
1706
1709
        free(temp);