فهرست منبع

fix: Properly drop UseFuture's values to avoid leaking memory

Marc Espín 2 سال پیش
والد
کامیت
1546fce485
1فایلهای تغییر یافته به همراه8 افزوده شده و 0 حذف شده
  1. 8 0
      packages/hooks/src/usefuture.rs

+ 8 - 0
packages/hooks/src/usefuture.rs

@@ -89,6 +89,14 @@ pub struct UseFuture<T> {
     values: Rc<RefCell<Vec<*mut T>>>,
 }
 
+impl<T> Drop for UseFuture<T> {
+    fn drop(&mut self) {
+        for value in self.values.take().into_iter() {
+            drop(unsafe { Box::from_raw(value) })
+        }
+    }
+}
+
 pub enum UseFutureState<'a, T> {
     Pending,
     Complete(&'a T),