*/}}
소스 검색

Comment node copy fix

YimingWu 1 년 전
부모
커밋
ef6926422e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      resources/la_nodes_basic.c

+ 1 - 1
resources/la_nodes_basic.c

@@ -757,7 +757,7 @@ int IDN_CommentVisit(laCommentNode* n, laNodeVisitInfo* vi){
 int IDN_CommentEval(laCommentNode* n){ return 1; }
 void IDN_CommentCopy(laCommentNode* new, laCommentNode* old, int DoRematch){
     if(DoRematch){ return; }
-    strSafeSet(new->Content,old->Content?old->Content->Ptr:0);
+    strSafeSet(&new->Content,old->Content?old->Content->Ptr:0);
 }
 void laui_CommentNode(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context){
     laColumn* c=laFirstColumn(uil); laCommentNode*n=This->EndInstance;