From 203cd39dfe8ee880fbd48d014d698ac21c67af92 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 18 Mar 2014 20:17:03 +0000 Subject: [PATCH] * fhandler_dsp.cc (fhandler_dev_dsp::fixup_after_fork): Actually call _fixup_after_fork rather than looping forever. (fhandler_dev_dsp::fixup_after_exec): Ditto. --- winsup/cygwin/ChangeLog | 6 ++++++ winsup/cygwin/fhandler_dsp.cc | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index e7f8b3103..c3bfd8424 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,9 @@ +2014-03-18 Christopher Faylor + + * fhandler_dsp.cc (fhandler_dev_dsp::fixup_after_fork): Actually call + _fixup_after_fork rather than looping forever. + (fhandler_dev_dsp::fixup_after_exec): Ditto. + 2014-03-18 Corinna Vinschen Partially revert patch from 2014-03-04. diff --git a/winsup/cygwin/fhandler_dsp.cc b/winsup/cygwin/fhandler_dsp.cc index 04b13057a..70e9c1cb4 100644 --- a/winsup/cygwin/fhandler_dsp.cc +++ b/winsup/cygwin/fhandler_dsp.cc @@ -1026,13 +1026,13 @@ fhandler_dev_dsp::ioctl (unsigned int cmd, void *) void fhandler_dev_dsp::fixup_after_fork (HANDLE parent) { - base ()->fixup_after_fork (parent); + base ()->_fixup_after_fork (parent); } void fhandler_dev_dsp::fixup_after_exec () { - base ()->fixup_after_exec (); + base ()->_fixup_after_exec (); }