1
0
Эх сурвалжийг харах

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

Fix string memory leak
Jonathan Kelley 1 жил өмнө
parent
commit
f52233c095

+ 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(),
         })
     }