Mercurial > hg > orthanc
diff OrthancFramework/Sources/DicomNetworking/Internals/GetScp.cpp @ 5072:b23a4bb18065
replaced bzero() by memset()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 15 Aug 2022 22:13:39 +0200 |
parents | 43e613a7756b |
children | 0ea402b4d901 |
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomNetworking/Internals/GetScp.cpp Mon Aug 15 18:25:28 2022 +0200 +++ b/OrthancFramework/Sources/DicomNetworking/Internals/GetScp.cpp Mon Aug 15 22:13:39 2022 +0200 @@ -198,7 +198,7 @@ assert(responseIdentifiers != NULL); assert(requestIdentifiers != NULL); - bzero(response, sizeof(T_DIMSE_C_GetRSP)); + memset(response, 0, sizeof(T_DIMSE_C_GetRSP)); *statusDetail = NULL; *responseIdentifiers = NULL;