123 Star 0 Fork 10

src-openEuler/esc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Fix-compilation-failure-caused-by-gcc12.patch 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
lyn 提交于 2023-07-13 18:39 . fix build error
diff --git a/src/lib/coolkey/CoolKey_Message.cpp b/src/lib/coolkey/CoolKey_Message.cpp
index 87ee309..7b80f70 100644
--- a/src/lib/coolkey/CoolKey_Message.cpp
+++ b/src/lib/coolkey/CoolKey_Message.cpp
@@ -213,7 +213,7 @@ void eCKMessage::setBinValue(string &aKey,unsigned char*aValue,int *aSize)
if(!aKey.length())
return;
- if(aSize <=0 || !aValue)
+ if(aSize ==0 || !aValue)
return;
string data = "";
diff --git a/src/lib/nss-http-client/request.cpp b/src/lib/nss-http-client/request.cpp
index cabd94f..5428350 100644
--- a/src/lib/nss-http-client/request.cpp
+++ b/src/lib/nss-http-client/request.cpp
@@ -192,7 +192,7 @@ PRBool PSHttpRequest::setBody(int size, const char* body) {
}
_bodyLength = size;
- sprintf(_body,body);
+ sprintf(_body,"%s",body);
//_body = (char *)body;
return PR_TRUE;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/esc.git
[email protected]:src-openeuler/esc.git
src-openeuler
esc
esc
master

搜索帮助