xref: /illumos-gate/usr/src/tools/smatch/src/smatch_data/db/fixup_all.sh (revision 332e84f52cdee3d0232bd5ac5306c42177959c96)
1#!/bin/bash
2
3db_file=$1
4cat << EOF | sqlite3 $db_file
5
6delete from return_states where function = 'strlen';
7delete from return_states where function = 'strnlen';
8delete from return_states where function = 'sprintf';
9delete from return_states where function = 'snprintf';
10
11EOF
12
13