~ubuntu-branches/ubuntu/precise/mame/precise-proposed

« back to all changes in this revision

Viewing changes to src/tools/chdman.c

  • Committer: Package Import Robot
  • Author(s): Cesare Falco
  • Date: 2011-11-30 18:50:10 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111130185010-02hcxybht1mn082w
Tags: 0.144-0ubuntu1
* New upstream release (LP: #913550)
* mame.install:
  - Added artwork/ images to be used with -effect switch
  - Be more selective with hash/ contents
* contrib/mame.ini: added /usr/share/games/mame/artwork/ to artpath

Show diffs side-by-side

added added

removed removed

Lines of Context:
450
450
        if (err != CHDERR_NONE)
451
451
                osd_rmfile(outputfile);
452
452
        if (identdata != NULL)
453
 
                free(identdata);
 
453
                osd_free(identdata);
454
454
        return (err != CHDERR_NONE);
455
455
}
456
456
 
592
592
        if (err != CHDERR_NONE)
593
593
                osd_rmfile(outputfile);
594
594
        if (identdata != NULL)
595
 
                free(identdata);
 
595
                osd_free(identdata);
596
596
        return (err != CHDERR_NONE);
597
597
}
598
598
 
3084
3084
 
3085
3085
cleanup:
3086
3086
        if (metadata != NULL)
3087
 
                free(metadata);
 
3087
                osd_free(metadata);
3088
3088
        if (chd != NULL)
3089
3089
                chd_close(chd);
3090
3090
        if (err != CHDERR_NONE && was_readonly)