| 86 | } |
| 87 | |
| 88 | static void add_unless_null(apr_table_t *table, const char *name, const char *val) |
| 89 | { |
| 90 | if (name && val) { |
| 91 | apr_table_addn(table, name, val); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | /* Sets variable @name in table @dest from r->subprocess_env if |
| 96 | * available, else from the environment, else from @fallback if |
no outgoing calls
no test coverage detected