-
-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Labels
Description
Hi Daniela,
I believe you also received a message from CRAN with an impeding archival due to check problems.
The error occurs in the example below and is related to the blas library, but I can´t reproduce it locally.
blast.c:362:29: runtime error: load of address 0x7fbced194f40 with insufficient space for an object of type 'unsigned char'
Are you able to reproduce this error?
# Input file name
input <- system.file("files/sids.dbc", package = "read.dbc")
# Output file name
output <- tempfile(fileext = ".dbc")
# The call returns TRUE on success
if( dbc2dbf(input.file = input, output.file = output) ) {
print("File decompressed!")
# do things with the file
}
file.remove(output) # clean up example, don't do in real life :)Reactions are currently unavailable