containers / libocispec

a C library for accessing OCI runtime and image spec files
Other
52 stars 30 forks source link

fix bug when contain null value in json #105

Closed duguhaotian closed 3 years ago

duguhaotian commented 3 years ago
# before fixed
$ ./tests/test-11 
gen error src/json_common.c: gen_yajl_val_obj: 23: error generating json, errcode: 1

# after fixed
$ ./tests/test-11 
{
    "imageLayoutVersion": "1.0.0",
    "just-key": null,
    "obj-item": {
        "key1": null
    }
}

Signed-off-by: duguhaotian knowledgehao@163.com

duguhaotian commented 3 years ago

@giuseppe please review this pr

giuseppe commented 3 years ago

I'll merge as soon as CI is green

duguhaotian commented 3 years ago

thanks