You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asterisk/pbx
Russell Bryant 91bfacc3ed
Don't create the context for users in users.conf until we know at least one user exists.
18 years ago
..
ael closes issue #10834 ; where a null input to a switch statement results in a hangup; since switch is implemented with extensions, and the default case is implemented with a '.', and the '.' matches 1 or more remaining characters, the case where 0 characters exist isn't matched, and the extension isn't matched, and the goto fails, and a hangup occurs. Now, when a default case is generated, it also generates a single fixed extension that will match a null input. That extension just does a goto to the default extension for that switch. I played with an alternate solution, where I just tack an extra char onto all the patterns and the goto, but not the default case's pattern. Then even a null input will still have at least one char in it. But it made me nervous, having that extra char in , even if that's a pretty secret and low-level issue. 18 years ago
Makefile fix a few build system bugs, and convert Makefiles to be compatible with GNU make 3.80 19 years ago
dundi-parser.c apparently developers are still not aware that they should be use ast_copy_string instead of strncpy... fix up many more users, and fix some bugs in the process 19 years ago
dundi-parser.h remove extraneous svn:executable properties 20 years ago
kdeconsole_main.cc rename this file so it doesn't appear to be a module by itself 19 years ago
pbx_ael.c closes issue #10870 ; where a CUT() function call in a switch expr doesn't execute correctly, because the commas in the function args are not converted to vertbars before the func is called. I modified just the switch code to convert the commas to vertbars if there, but if more of these sort of probs are found, I may have to resort to something a little more fundamental. We'll see, I guess. 18 years ago
pbx_config.c Don't create the context for users in users.conf until we know at least one user exists. 18 years ago
pbx_dundi.c remove a todo item that has been completed 18 years ago
pbx_gtkconsole.c Various updates from PCadach's chan_h323-live branch 19 years ago
pbx_kdeconsole.cc various minor fixes 19 years ago
pbx_kdeconsole.h remove extraneous svn:executable properties 20 years ago
pbx_loopback.c merge new_loader_completion branch, including (at least): 19 years ago
pbx_realtime.c Fix the potential use of an uninitialized buffer in a log message. 18 years ago
pbx_spool.c Fix a small typo. 18 years ago