diff options
| author | jvoisin | 2022-07-18 20:45:58 +0200 |
|---|---|---|
| committer | jvoisin | 2022-07-18 20:45:58 +0200 |
| commit | b839c4629ec27821dd8ee2683fe7c7d9d8f6dd1a (patch) | |
| tree | 0e0202732aee841445e8e747f458eaaa8445c28e /src | |
| parent | 90bdf39000d2f09534b387d39203819995fb948e (diff) | |
Remove a superfluous condition
Diffstat (limited to 'src')
| -rw-r--r-- | src/sp_config_keywords.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/sp_config_keywords.c b/src/sp_config_keywords.c index e0e5166..ea4e1cd 100644 --- a/src/sp_config_keywords.c +++ b/src/sp_config_keywords.c | |||
| @@ -394,10 +394,8 @@ SP_PARSE_FN(parse_disabled_functions) { | |||
| 394 | return SP_PARSER_STOP; | 394 | return SP_PARSER_STOP; |
| 395 | 395 | ||
| 396 | out: | 396 | out: |
| 397 | if (df) { | 397 | sp_free_disabled_function(df); |
| 398 | sp_free_disabled_function(df); | 398 | pefree(df, 1); |
| 399 | pefree(df, 1); | ||
| 400 | } | ||
| 401 | if (param) { zend_string_release(param); } | 399 | if (param) { zend_string_release(param); } |
| 402 | if (var) { zend_string_release(var); } | 400 | if (var) { zend_string_release(var); } |
| 403 | 401 | ||
