MCPcopy Create free account
hub / github.com/apache/httpd / md_json_dupj

Function md_json_dupj

modules/md/md_json.c:492–506  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

490}
491
492md_json_t *md_json_dupj(apr_pool_t *p, const md_json_t *json, ...)
493{
494 json_t *j;
495 va_list ap;
496
497 va_start(ap, json);
498 j = jselect(json, ap);
499 va_end(ap);
500
501 if (j) {
502 json_incref(j);
503 return json_create(p, j);
504 }
505 return NULL;
506}
507
508const md_json_t *md_json_getcj(const md_json_t *json, ...)
509{

Callers 2

copy_challenge_errorFunction · 0.85
md_result_from_jsonFunction · 0.85

Calls 2

jselectFunction · 0.85
json_createFunction · 0.85

Tested by

no test coverage detected