Skip to content

Commit 93b6599

Browse files
stweilmalc
authored and
malc
committed
audio: Fix warning from static code analysis
smatch report: audio/audio_template.h:416 AUD_open_out(18) warn: variable dereferenced before check 'as' (see line 414) Moving the ldebug statement after the statement which checks 'as' fixes that warning. Signed-off-by: Stefan Weil <[email protected]> Signed-off-by: malc <[email protected]>
1 parent 04cbbde commit 93b6599

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

audio/audio_template.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -410,15 +410,15 @@ SW *glue (AUD_open_, TYPE) (
410410
SW *old_sw = NULL;
411411
#endif
412412

413-
ldebug ("open %s, freq %d, nchannels %d, fmt %d\n",
414-
name, as->freq, as->nchannels, as->fmt);
415-
416413
if (audio_bug (AUDIO_FUNC, !card || !name || !callback_fn || !as)) {
417414
dolog ("card=%p name=%p callback_fn=%p as=%p\n",
418415
card, name, callback_fn, as);
419416
goto fail;
420417
}
421418

419+
ldebug ("open %s, freq %d, nchannels %d, fmt %d\n",
420+
name, as->freq, as->nchannels, as->fmt);
421+
422422
if (audio_bug (AUDIO_FUNC, audio_validate_settings (as))) {
423423
audio_print_settings (as);
424424
goto fail;

0 commit comments

Comments
 (0)