* 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.
This commit is contained in:
@ -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 ();
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user