[rt-commit] r211 - /redwax-tool/trunk/redwax-tool.c
rt-commit at redwax.eu
rt-commit at redwax.eu
Sat Feb 22 16:52:55 CET 2025
Author: minfrin at redwax.eu
Date: Sat Feb 22 16:52:55 2025
New Revision: 211
Log:
Add missing process check on directory walk.
Modified:
redwax-tool/trunk/redwax-tool.c
Modified: redwax-tool/trunk/redwax-tool.c
==============================================================================
--- redwax-tool/trunk/redwax-tool.c (original)
+++ redwax-tool/trunk/redwax-tool.c Sat Feb 22 16:52:55 2025
@@ -2169,7 +2169,8 @@
dir = dirname(apr_pstrdup(r->pool, path));
if (!apr_fnmatch_test(base)) {
- return walk(r, path, redwax_secret_path(r, dir, base, r->secret_suffix_in));
+ status = walk(r, path, redwax_secret_path(r, dir, base, r->secret_suffix_in));
+ return redwax_process(r, status, name);
}
if ((status = apr_dir_open(&thedir, dir, r->pool)) != APR_SUCCESS) {
More information about the rt-commit
mailing list