Przeglądaj źródła

Merge pull request #1634 from ealmloff/fix-string-memory-leak

Fix string memory leak
Jonathan Kelley 1 rok temu
rodzic
commit
f52233c095
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      packages/core/src/nodes.rs

+ 1 - 1
packages/core/src/nodes.rs

@@ -707,7 +707,7 @@ impl<'a, 'b> IntoDynNode<'b> for &'a str {
 impl IntoDynNode<'_> for String {
     fn into_vnode(self, cx: &ScopeState) -> DynamicNode {
         DynamicNode::Text(VText {
-            value: cx.bump().alloc(self),
+            value: cx.bump().alloc_str(&self),
             id: Default::default(),
         })
     }