You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zserio version and language
Zserio: 2.1.2
Language: C++
Describe the bug
As per the documentation of Zserio, it can support up to 64 bytes of data. But there is an issue found from nds where there is 144 bytes of data getting sent through some type traits concept at compiler\extensions\cpp\runtime\src\zserio\Array.h.
As per the Autosar guidelines checker, it has found the size passed as144 bytes. However, it's allowed threshold is 128 bytes of data.
Here, the size of Element Type is more than the supported size. The issue is due to large size of data being passed as a value instead of pass by reference.
The text was updated successfully, but these errors were encountered:
Zserio version and language
Zserio: 2.1.2
Language: C++
Describe the bug
As per the documentation of Zserio, it can support up to 64 bytes of data. But there is an issue found from nds where there is 144 bytes of data getting sent through some type traits concept at compiler\extensions\cpp\runtime\src\zserio\Array.h.
https://github.com/ndsev/zserio/blob/master/compiler/extensions/cpp/runtime/src/zserio/Array.h
As per the Autosar guidelines checker, it has found the size passed as144 bytes. However, it's allowed threshold is 128 bytes of data.
Here, the size of Element Type is more than the supported size. The issue is due to large size of data being passed as a value instead of pass by reference.
The text was updated successfully, but these errors were encountered: