diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-11 14:11:05 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-11 14:11:05 +0200 |
| commit | 672541352e91ce4e2333d45dd8b3808d2d379466 (patch) | |
| tree | 489d7a42a8e753f81fc0d9482d8b91f35e163414 /dev/LibCompiler/UUID.h | |
| parent | b4155efdeb3df35080e3e14ab7a618de97164eea (diff) | |
feat(cxxdrv): Begin addressing stack corruption issue causing segmentation fault
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/UUID.h')
| -rw-r--r-- | dev/LibCompiler/UUID.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/LibCompiler/UUID.h b/dev/LibCompiler/UUID.h index d54eec7..39db276 100644 --- a/dev/LibCompiler/UUID.h +++ b/dev/LibCompiler/UUID.h @@ -172,7 +172,7 @@ namespace Detail { process_byte(static_cast<unsigned char>((bitCount >> 24) & 0xFF)); process_byte(static_cast<unsigned char>((bitCount >> 16) & 0xFF)); process_byte(static_cast<unsigned char>((bitCount >> 8) & 0xFF)); - process_byte(static_cast<unsigned char>((bitCount) & 0xFF)); + process_byte(static_cast<unsigned char>((bitCount) &0xFF)); memcpy(digest, m_digest, 5 * sizeof(uint32_t)); return digest; |
