Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2020-11-12 15:59:02 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2020-11-12 16:16:51 +0300
commit4cb911b36bdcd6057d04695b0ff0ac26d0f73a77 (patch)
treef080985c84373f225ada28ce3787464223939b97
parent14fecb53bb9de01f89a07fa11a93769fd5a3ba58 (diff)
Create intentional bug for testing CIFuzz.
-rw-r--r--pb_decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pb_decode.c b/pb_decode.c
index 4f11c9d..c41dcad 100644
--- a/pb_decode.c
+++ b/pb_decode.c
@@ -1294,7 +1294,7 @@ void pb_release(const pb_msgdesc_t *fields, void *dest_struct)
do
{
- pb_release_single_field(&iter);
+ /*pb_release_single_field(&iter); FIXME: Intentional bug for CIFuzz testing */
} while (pb_field_iter_next(&iter));
}
#endif