-
Notifications
You must be signed in to change notification settings - Fork 24
Description
(This issue is forwarded from rstudio/rstudio#8923)
System details
RStudio Edition : Desktop
RStudio Version : 1.4.1103
OS Version : Win10
R Version : 4.0.3
Steps to reproduce the problem
library(bigmemory)
setClass("testClass1",
slots = c(md5 = "character"),
contains = "big.matrix")
setClass("testClass2",
slots = c(md5 = "character"),
prototype = c(md5 = "1"),
contains = "big.matrix")
t1 <- as.big.matrix(matrix(1:100, nrow = 10))
t2 <- new("testClass1", address = t1@address, md5 = digest::digest(matrix(1:100, nrow = 10)))
t3 <- new("testClass2", address = t1@address, md5 = digest::digest(matrix(1:100, nrow = 10)))
Describe the problem in detail
If I run the codes above, save the workspace, restart RStudio again, it will throw a fatal error. This only occurs if t3 is in the workspace, and only occurs in RStudio (RGui doesn't have this problem).
I guess a part of this problem comes from the behavior of bigmemory package: it generates external pointers which will become null in the next time. If I click t2 with a null pointer to view it, the fatal error of R will also occur. (This is easy to avoid: as long as I don't click it, it's fine.)
But for t3, whenever I load the workspace, that fatal error occurs.
Another thing I found is that t2 is in the Data section of the variable inspector, while t3 is in the Values section. I suspect this is related to this problem, but I'm not sure.
Describe the behavior you expected
Successfully load the abovementioned objects.
- I have read the guide for submitting good bug reports.
- I have installed the latest version of RStudio, and confirmed that the issue still persists.
- If I am reporting a RStudio crash, I have included a diagnostics report.
- I have done my best to include a minimal, self-contained set of instructions for consistently reproducing the issue.