read.dbc icon indicating copy to clipboard operation
read.dbc copied to clipboard

Impeding CRAN archival on 2024-07-06

Open rfsaldanha opened this issue 8 months ago • 1 comments

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 :)

rfsaldanha avatar Jun 24 '24 07:06 rfsaldanha