mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
fix an incorrect usage of scanf, where it should be using sscanf, instead,
which was causing asterisk to hang when loading this module (reported by blitzrage on IRC) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32867 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -308,9 +308,10 @@ static int reload_followme(void)
|
||||
}
|
||||
featuredigittostr = ast_variable_retrieve(cfg, "general", "featuredigittimeout");
|
||||
|
||||
if (!ast_strlen_zero(featuredigittostr))
|
||||
if (!scanf("%d", &featuredigittimeout))
|
||||
if (!ast_strlen_zero(featuredigittostr)) {
|
||||
if (!sscanf(featuredigittostr, "%d", &featuredigittimeout))
|
||||
featuredigittimeout = 5000;
|
||||
}
|
||||
|
||||
takecallstr = ast_variable_retrieve(cfg, "general", "takecall");
|
||||
if (!ast_strlen_zero(takecallstr))
|
||||
|
Reference in New Issue
Block a user