Skip to content

More tests pass now #163

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Feb 4, 2015
Prev Previous commit
Next Next commit
Fixed memory leak
  • Loading branch information
laruence authored and rlerdorf committed Feb 4, 2015
commit 35a543f0cb7a9825b8b19ddcf2ff44435a208355
2 changes: 1 addition & 1 deletion php_memcached.c
Original file line number Diff line number Diff line change
Expand Up @@ -1699,7 +1699,7 @@ static void php_memc_delete_impl(INTERNAL_FUNCTION_PARAMETERS, zend_bool by_key)
if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|l", &key, &expiration) == FAILURE) {
return;
}
server_key = zend_string_copy(key);
server_key = key;
}

MEMC_METHOD_FETCH_OBJECT;
Expand Down