Skip to content

Commit

Permalink
Merge pull request #6044 from jpfr/merge_12_13_10
Browse files Browse the repository at this point in the history
Merge 1.2. to 1.3
  • Loading branch information
jpfr authored Oct 6, 2023
2 parents 1df2db0 + 31c93e6 commit 086b155
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
# overwritten with more detailed information if git is available.
set(OPEN62541_VER_MAJOR 1)
set(OPEN62541_VER_MINOR 3)
set(OPEN62541_VER_PATCH 6)
set(OPEN62541_VER_PATCH 8)
set(OPEN62541_VER_LABEL "-undefined") # like "-rc1" or "-g4538abcd" or "-g4538abcd-dirty"
set(OPEN62541_VER_COMMIT "unknown-commit")

Expand Down
1 change: 1 addition & 0 deletions plugins/crypto/openssl/ua_openssl_basic256sha256.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ UA_ChannelModule_New_Context(const UA_SecurityPolicy * securityPolicy,
if(context->remoteCertificateX509 == NULL) {
UA_ByteString_clear(&context->remoteCertificate);
UA_free(context);
return UA_STATUSCODE_BADINTERNALERROR;
}

context->policyContext =
Expand Down
2 changes: 1 addition & 1 deletion plugins/crypto/openssl/ua_pki_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ UA_CertificateVerification_VerifyApplicationURI (void * verificat

const unsigned char * pData;
X509 * certificateX509;
UA_String subjectURI;
UA_String subjectURI = UA_STRING_NULL;
GENERAL_NAMES * pNames;
int i;
UA_StatusCode ret;
Expand Down

0 comments on commit 086b155

Please sign in to comment.