diff options
Diffstat (limited to 'src/libfast')
-rw-r--r-- | src/libfast/request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libfast/request.c b/src/libfast/request.c index 89e91b377..a3db70e82 100644 --- a/src/libfast/request.c +++ b/src/libfast/request.c @@ -120,7 +120,7 @@ static char *getenv_cb(void *null, const char *key) private_request_t *this = (private_request_t*)thread_this->get(thread_this); value = FCGX_GetParam(key, this->req.envp); - return value ? strdup(value) : NULL; + return strdupnull(value); } /** |