Skip to content

Commit c07f9ba

Browse files
author
hselasky
committed
chan_capi: Fix use of uninitialized variable.
1 parent ad7bd5a commit c07f9ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chan_capi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3481,7 +3481,7 @@ chan_capi_request(const char *type, const struct ast_codec_pref *formats,
34813481
* Allocate a PBX channel before allocating the CAPI channel,
34823482
* while unlocked:
34833483
*/
3484-
pbx_chan = cd_alloc_pbx_channel(cep->name, dest);
3484+
pbx_chan = cd_alloc_pbx_channel("", dest);
34853485

34863486
/* have to lock the CAPI application first! */
34873487

0 commit comments

Comments
 (0)