Skip to content

Commit

Permalink
Fix LTO error for R_multi_setopt
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Jan 7, 2025
1 parent 1617120 commit a8c8975
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: curl
Type: Package
Title: A Modern and Flexible Web Client for R
Version: 6.1.0
Version: 6.1.9000
Authors@R: c(
person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]",
comment = c(ORCID = "0000-0002-4035-0289")),
Expand Down
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
6.2.0
- Fix LTO error for R_multi_setopt
- Fix parsing of #fragment links in curl_parse() (#366)

6.1.0
- Fix a rchk bug
- Enable CURLOPT_PIPEWAIT by default to prefer multiplex when possible
Expand Down
2 changes: 1 addition & 1 deletion src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extern SEXP R_multi_fdset(SEXP);
extern SEXP R_multi_list(SEXP);
extern SEXP R_multi_new(void);
extern SEXP R_multi_run(SEXP, SEXP, SEXP);
extern SEXP R_multi_setopt(SEXP, SEXP, SEXP, SEXP);
extern SEXP R_multi_setopt(SEXP, SEXP, SEXP, SEXP, SEXP);
extern SEXP R_new_file_writer(SEXP);
extern SEXP R_new_handle(void);
extern SEXP R_nslookup(SEXP, SEXP);
Expand Down

0 comments on commit a8c8975

Please sign in to comment.