Message ID | 20230428184640.849066-8-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 3b5c0e5ed0763195157ae1eacc2250a935726803 |
Headers | show |
Series | [BlueZ,v4,1/9] media: Fix not storing Preferred Delay properly | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
diff --git a/src/shared/util.c b/src/shared/util.c index d31daacc4b93..9a4a8d77abce 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -268,7 +268,8 @@ void *util_iov_push_mem(struct iovec *iov, size_t len, const void *data) if (!p) return NULL; - memcpy(p, data, len); + if (data) + memcpy(p, data, len); return p; }
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This fixes the following errors: src/shared/util.c:271:2: runtime error: null pointer passed as argument 2, which is declared to never be null --- src/shared/util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)