@@ -48,67 +48,6 @@ FUZZ_TARGET(str_printf)
48
48
//
49
49
// Upstream bug report: https://github.com/c42f/tinyformat/issues/70
50
50
51
- try {
52
- (void )strprintf (format_string, (signed char *)nullptr );
53
- (void )tinyformat::format (bilingual_string, (signed char *)nullptr );
54
- } catch (const tinyformat::format_error&) {
55
- }
56
- try {
57
- (void )strprintf (format_string, (unsigned char *)nullptr );
58
- (void )tinyformat::format (bilingual_string, (unsigned char *)nullptr );
59
- } catch (const tinyformat::format_error&) {
60
- }
61
- try {
62
- (void )strprintf (format_string, (void *)nullptr );
63
- (void )tinyformat::format (bilingual_string, (void *)nullptr );
64
- } catch (const tinyformat::format_error&) {
65
- }
66
- try {
67
- (void )strprintf (format_string, (bool *)nullptr );
68
- (void )tinyformat::format (bilingual_string, (bool *)nullptr );
69
- } catch (const tinyformat::format_error&) {
70
- }
71
- try {
72
- (void )strprintf (format_string, (float *)nullptr );
73
- (void )tinyformat::format (bilingual_string, (float *)nullptr );
74
- } catch (const tinyformat::format_error&) {
75
- }
76
- try {
77
- (void )strprintf (format_string, (double *)nullptr );
78
- (void )tinyformat::format (bilingual_string, (double *)nullptr );
79
- } catch (const tinyformat::format_error&) {
80
- }
81
- try {
82
- (void )strprintf (format_string, (int16_t *)nullptr );
83
- (void )tinyformat::format (bilingual_string, (int16_t *)nullptr );
84
- } catch (const tinyformat::format_error&) {
85
- }
86
- try {
87
- (void )strprintf (format_string, (uint16_t *)nullptr );
88
- (void )tinyformat::format (bilingual_string, (uint16_t *)nullptr );
89
- } catch (const tinyformat::format_error&) {
90
- }
91
- try {
92
- (void )strprintf (format_string, (int32_t *)nullptr );
93
- (void )tinyformat::format (bilingual_string, (int32_t *)nullptr );
94
- } catch (const tinyformat::format_error&) {
95
- }
96
- try {
97
- (void )strprintf (format_string, (uint32_t *)nullptr );
98
- (void )tinyformat::format (bilingual_string, (uint32_t *)nullptr );
99
- } catch (const tinyformat::format_error&) {
100
- }
101
- try {
102
- (void )strprintf (format_string, (int64_t *)nullptr );
103
- (void )tinyformat::format (bilingual_string, (int64_t *)nullptr );
104
- } catch (const tinyformat::format_error&) {
105
- }
106
- try {
107
- (void )strprintf (format_string, (uint64_t *)nullptr );
108
- (void )tinyformat::format (bilingual_string, (uint64_t *)nullptr );
109
- } catch (const tinyformat::format_error&) {
110
- }
111
-
112
51
try {
113
52
CallOneOf (
114
53
fuzzed_data_provider,
0 commit comments