@@ -0,0 +1,48 @@
|
|||||||
|
diff -Nuar a/src/WWW.cpp b/src/WWW.cpp
|
||||||
|
--- a/src/WWW.cpp 2017-11-19 06:12:23.000000000 +0300
|
||||||
|
+++ b/src/WWW.cpp 2018-09-14 22:22:41.605721326 +0300
|
||||||
|
@@ -206,7 +206,7 @@
|
||||||
|
std::string v_www_agent = WWW_AGENT;
|
||||||
|
|
||||||
|
/* open the file */
|
||||||
|
- if( (v_destinationFile = fopen(v_local_file_tmp.c_str(), "wb")) == false) {
|
||||||
|
+ if( (v_destinationFile = fopen(v_local_file_tmp.c_str(), "wb")) == NULL) {
|
||||||
|
throw Exception("error : unable to open output file "
|
||||||
|
+ v_local_file_tmp);
|
||||||
|
}
|
||||||
|
@@ -320,7 +320,7 @@
|
||||||
|
LogInfo(std::string("Uploading replay " + p_replayFilename).c_str());
|
||||||
|
|
||||||
|
/* open the file */
|
||||||
|
- if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == false) {
|
||||||
|
+ if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == NULL) {
|
||||||
|
throw Exception("error : unable to open output file " DEFAULT_WWW_MSGFILE("UR"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -478,7 +478,7 @@
|
||||||
|
LogInfo("Sending vote");
|
||||||
|
|
||||||
|
/* open the file */
|
||||||
|
- if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == false) {
|
||||||
|
+ if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == NULL) {
|
||||||
|
throw Exception("error : unable to open output file " DEFAULT_WWW_MSGFILE("SV"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -562,7 +562,7 @@
|
||||||
|
LogInfo("Sending report");
|
||||||
|
|
||||||
|
/* open the file */
|
||||||
|
- if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == false) {
|
||||||
|
+ if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == NULL) {
|
||||||
|
throw Exception("error : unable to open output file " DEFAULT_WWW_MSGFILE("SR"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -677,7 +677,7 @@
|
||||||
|
LogInfo(std::string("Uploading dbsync " + p_dbSyncFilename + " to " + p_url_to_transfert).c_str());
|
||||||
|
|
||||||
|
/* open the file */
|
||||||
|
- if( (v_destinationFile = fopen(p_answerFile.c_str(), "wb")) == false) {
|
||||||
|
+ if( (v_destinationFile = fopen(p_answerFile.c_str(), "wb")) == NULL) {
|
||||||
|
throw Exception("error : unable to open output file " + p_answerFile);
|
||||||
|
}
|
||||||
|
|
||||||
@@ -33,6 +33,7 @@
|
|||||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
<Patches>
|
<Patches>
|
||||||
|
<Patch level="1">www-cpp.patch</Patch>
|
||||||
<Patch level="1">lua52_compat.patch</Patch>
|
<Patch level="1">lua52_compat.patch</Patch>
|
||||||
<Patch level="0">genericname_pl-tr.patch</Patch>
|
<Patch level="0">genericname_pl-tr.patch</Patch>
|
||||||
</Patches>
|
</Patches>
|
||||||
|
|||||||
Reference in New Issue
Block a user