[Gdcm-hackers] gdcm-git:Grassroots DICOM branch master updated. 976c57b0b875579c68dec8f9d97f036fb93
Cross-platform DICOM implementation
Brought to you by:
malat
|
From: malat <ma...@us...> - 2023-04-04 08:22:14
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Grassroots DICOM".
The branch, master has been updated
via 976c57b0b875579c68dec8f9d97f036fb9395f5b (commit)
from 351b0f1fc6cdd3acad67b680fcb62ebd57f6b8f7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://sourceforge.net/p/gdcm/gdcm/ci/976c57b0b875579c68dec8f9d97f036fb9395f5b/
commit 976c57b0b875579c68dec8f9d97f036fb9395f5b
Author: Sean McBride <se...@ro...>
Date: Fri Mar 24 18:45:37 2023 -0400
Fixed all clang -Wzero-as-null-pointer-constant warnings
diff --git a/Source/Common/gdcmDataEvent.h b/Source/Common/gdcmDataEvent.h
index 87afd1ceb..bd783ed6e 100644
--- a/Source/Common/gdcmDataEvent.h
+++ b/Source/Common/gdcmDataEvent.h
@@ -29,7 +29,7 @@ public:
typedef AnyEvent Superclass;
DataEvent(const char *bytes = nullptr, size_t len = 0):Bytes(bytes),Length(len) {}
~DataEvent() override = default;
- DataEvent(const Self&s) : AnyEvent(s), Bytes(0), Length(0) {}
+ DataEvent(const Self&s) : AnyEvent(s), Bytes(nullptr), Length(0) {}
void operator=(const Self&) = delete;
const char * GetEventName() const override { return "DataEvent"; }
-----------------------------------------------------------------------
Summary of changes:
Source/Common/gdcmDataEvent.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
Grassroots DICOM
|