Skip to content

Commit

Permalink
Update NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Feb 20, 2024
1 parent dc3e08d commit d9f2a6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Fix an issue where curl_fetch_stream() might not return all bytes received
by the C layer if the server closed the connection mid-response.
- No longer enable CURLOPT_UNRESTRICTED_AUTH by default
- Fix code to build with -DR_NO_REMAP (add all the Rf_ prefixes)

5.2.0
- The CURL_CA_BUNDLE envvar is now also used on non-Windows.
Expand Down
2 changes: 1 addition & 1 deletion src/reflist.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ SEXP reflist_remove(SEXP x, SEXP target){
Rf_error("Object not found in reflist!");
}

SEXP reflist_Rf_length(SEXP x) {
SEXP reflist_length(SEXP x) {
if(!Rf_isPairList(x))
Rf_error("Not a LISTSXP");
int i = 0;
Expand Down

0 comments on commit d9f2a6f

Please sign in to comment.