prosyslab-classroom / cs348-information-security

62 stars 10 forks source link

[Question][Hw4] __dbz_sanitizer__ input type error #95

Closed polish23 closed 3 years ago

polish23 commented 3 years ago

When I run the code like below, there's an error like this. problem

I think division input for __dbz_sanitizer__ must be int, int, int. However, there's an double input in json_parser.c

KakaoTalk_20210512_115643369

How can I solve this problem?

Thanks.

KihongHeo commented 3 years ago

It seems that your sanitizer instruments also FDiv. You can just remove that part from your sanitizer.

polish23 commented 3 years ago

Thanks!