Skip to content

Commit

Permalink
HPCC-30713 Fix Coverity scan defects in CWSDaliSoapBindingEx::exportS…
Browse files Browse the repository at this point in the history
…DSData

Signed-off-by: wangkx <kevin.wang@lexisnexis.com>
  • Loading branch information
wangkx committed Nov 2, 2023
1 parent b868791 commit a599ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/services/ws_dali/ws_daliservice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void CWSDaliSoapBindingEx::exportSDSData(CHttpRequest* request, CHttpResponse* r
CDateTime dt;
dt.setNow();
StringBuffer headerStr;
headerStr.appendf("attachment;filename=sds_%u.%u.tmp", (unsigned)GetCurrentProcessId(), (unsigned)dt.getSimple());
headerStr.appendf("attachment;filename=sds_%u.%llu.tmp", (unsigned)GetCurrentProcessId(), (unsigned __int64)dt.getSimple());
IEspContext* context = request->queryContext();
context->addCustomerHeader("Content-disposition", headerStr.str());

Expand Down

0 comments on commit a599ad7

Please sign in to comment.