Skip to content

Commit

Permalink
Trivial fix for a segfault in an exit path. Patch from Honza Horak.
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.debian.org/debburn/cdrkit/trunk@860 a95a6be8-091b-0410-adaf-d31e6857962f
  • Loading branch information
peters committed Jun 2, 2011
1 parent 0da02db commit 506a34c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ cdrkit (1.1.12) UNRELEASED; urgency=low

[ Honza Horák ]
* genisoimage.1: Document several more flags and aliases.
* icedax.c: Fix a segfault on exit (Red Hat bug #709902).

[ Ville Skyttä ]
* Fix several typos in genisoimage.1, icedax.1 and the genisoimage help text.
Expand Down
2 changes: 1 addition & 1 deletion icedax/icedax.c
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ static void exit_wrapper(int status)

if (child_pid != 0) {
SCSI *usalp = get_scsi_p();
if (usalp->running) {
if (usalp && usalp->running) {
usalp->cb_fun = on_exitscsi;
usalp->cb_arg = (void *) (uintptr_t) status;
} else {
Expand Down

0 comments on commit 506a34c

Please sign in to comment.