From b98a467eed197e856518e7ce31a4fe5d5d62901d Mon Sep 17 00:00:00 2001 From: wangyu Date: Thu, 11 Mar 2021 00:45:26 -0500 Subject: [PATCH] fix source argument is the same as destination --- common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.cpp b/common.cpp index 23aad31..138d41e 100644 --- a/common.cpp +++ b/common.cpp @@ -1180,7 +1180,7 @@ vector parse_conf_line(const string& s0) int i=int(s.length())-1; int j; vectorres; - strcpy(buf,(char *)s.c_str()); + //strcpy(buf,(char *)s.c_str()); while(i>=0) { if(buf[i]==' ' || buf[i]== '\t')