]> git.ipfire.org Git - thirdparty/asterisk.git/commit
app_reload: Fix Reload() without arguments.
authorNaveen Albert <asterisk@phreaknet.org>
Mon, 17 Nov 2025 21:14:16 +0000 (16:14 -0500)
committerNaveen Albert <asterisk@phreaknet.org>
Wed, 19 Nov 2025 17:19:50 +0000 (17:19 +0000)
commit403d1e5da2c9c3fcb0a3d64afad12661f4fd6f87
tree884236a4f67e0dcabe9c0c239ed607e958fcb988
parent93583fb1888f9b59360eaa2fdf3160d73dfb1ee9
app_reload: Fix Reload() without arguments.

Calling Reload() without any arguments is supposed to reload
everything (equivalent to a 'core reload'), but actually does
nothing. This is because it was calling ast_module_reload with
an empty string, and the argument needs to explicitly be NULL.

Resolves: #1597
apps/app_reload.c