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
Add flawfinder ignore comments for false positive security warnings
All 14 security warnings from Codacy/flawfinder are false positives:
- strlen() calls on PostgreSQL text datums (always null-terminated)
- strlen() calls on palloc'd strings (explicitly null-terminated)
- memcpy() in curl callbacks (buffer pre-allocated to exact size)
- strncpy() followed by explicit null-termination
Added inline suppression comments explaining why each is safe.
Co-Authored-By: Claude Opus 4.5 <[email protected]>
0 commit comments