Skip to content

Commit 1303f31

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 574a3ce + 86f481d commit 1303f31

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Title: A Robust, High Performance JSON Parser and Generator for R (adjusted for
44
License: MIT + file LICENSE
55
Depends: methods
66
Authors@R: c(
7-
person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]",
7+
person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]",
88
comment = c(ORCID = "0000-0002-4035-0289")),
99
person("Duncan", "Temple Lang", role = "ctb"),
1010
person("Frederik", "Proske", role = "ctb"),
1111
person("Lloyd", "Hilaiel", role = "cph", comment="author of bundled libyajl"))
1212
URL: https://jeroen.r-universe.dev/jsonlite
1313
https://arxiv.org/abs/1403.2805
1414
BugReports: https://github.com/jeroen/jsonlite/issues
15-
Maintainer: Jeroen Ooms <[email protected]>
15+
Maintainer: Jeroen Ooms <[email protected]>
1616
VignetteBuilder: knitr, R.rsp
1717
Description: A reasonably fast JSON parser and generator, optimized for statistical
1818
data and the web. Offers simple, flexible tools for working with JSON in R, and

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.8.9
2+
- Fix memory leak in base64 decoder
3+
- Update maintainer email address
4+
15
1.8.8
26
- Apply libyajl patches for CVE-2022-24795, CVE-2022-24795, CVE-2023-33460
37
- Fix printf warnings for cran

src/r-base64.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ SEXP R_base64_encode(SEXP buf){
1313
Rf_error("Error in base64 encode");
1414
SEXP res = PROTECT(allocVector(STRSXP, 1));
1515
SET_STRING_ELT(res, 0, mkCharLen((char*) out, outlen));
16+
free(out);
1617
UNPROTECT(1);
1718
return res;
1819
}

0 commit comments

Comments
 (0)