Change 0 to NULL
This commit is contained in:
4
server/modules/filter/cache/cache.c
vendored
4
server/modules/filter/cache/cache.c
vendored
@ -131,8 +131,8 @@ static bool route_using_cache(CACHE_INSTANCE *instance,
|
|||||||
*/
|
*/
|
||||||
static FILTER *createInstance(const char *name, char **options, FILTER_PARAMETER **params)
|
static FILTER *createInstance(const char *name, char **options, FILTER_PARAMETER **params)
|
||||||
{
|
{
|
||||||
const char *storage_name = 0;
|
const char *storage_name = NULL;
|
||||||
const char *storage_args = 0;
|
const char *storage_args = NULL;
|
||||||
uint32_t ttl = DEFAULT_TTL;
|
uint32_t ttl = DEFAULT_TTL;
|
||||||
|
|
||||||
bool error = false;
|
bool error = false;
|
||||||
|
Reference in New Issue
Block a user