[PATCH 01/28] mISDN: Fix NULL pointer bug in if-condition of mISDN_dsp
Karsten Keil <[email protected]>
| Newsgroups | gmane.linux.network,gmane.linux.isdn.i4l.user |
|---|---|
| Message-ID | <[email protected]> |
From: Andreas Eversberg <[email protected]> Fix bug in cases where dsp->conf was NULL. Signed-off-by: Andreas Eversberg <[email protected]> Signed-off-by: Karsten Keil <[email protected]> --- drivers/isdn/mISDN/dsp_cmx.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/isdn/mISDN/dsp_cmx.c b/drivers/isdn/mISDN/dsp_cmx.c index 334feab..b7589c2 100644 --- a/drivers/isdn/mISDN/dsp_cmx.c +++ b/drivers/isdn/mISDN/dsp_cmx.c @@ -1328,7 +1328,7 @@ dsp_cmx_send_member(struct dsp *dsp, int len, s32 *c, int members) } if (dsp->conf && dsp->conf->software && dsp->conf->hardware) tx_data_only = 1; - if (dsp->conf->software && dsp->echo.hardware) + if (dsp->echo.software && dsp->echo.hardware) tx_data_only = 1; } -- 1.7.3.4