-
Bug
-
Resolution: Fixed
-
Low
-
Network Development Kit
-
NDK-478
-
NDK_3_70_00
-
NDK_3_75_00
Each has a block like this:
/* Fill buffer with a test pattern */ for(i=0; i<test; i++) *(pBuf+i) = (char)i;
i gets casts to a char but test is configured to be at most 1024, so i will end up being truncated.