File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 13
13
#include <config.h>
14
14
#endif
15
15
16
+ #if defined(NDEBUG )
17
+ #undef NDEBUG
18
+ #endif
19
+
16
20
#include "vcard.h"
17
21
18
22
#include <assert.h>
@@ -59,6 +63,7 @@ static void test_parse_file(const char *fname)
59
63
size_t filesize ;
60
64
void * data = NULL ;
61
65
vcardcomponent * card ;
66
+ //krazy:cond=insecurenet
62
67
const char * want =
63
68
"BEGIN:VCARD\r\n"
64
69
"VERSION:4.0\r\n"
@@ -92,7 +97,7 @@ static void test_parse_file(const char *fname)
92
97
"X-LIC-ERROR;X-LIC-ERRORTYPE=RESTRICTION-CHECK:Failed restrictions for \r\n"
93
98
" VERSION property. Expected 1 instances of the property and got 0\r\n"
94
99
"END:VCARD\r\n" ;
95
-
100
+ //krazy:endcond=insecurenet
96
101
fp = fopen (fname , "rb" ); //on Windows, must open in binary mode
97
102
if (fp == (FILE * )NULL ) {
98
103
fprintf (stderr , "Error: unable to open %s\n" , fname );
You can’t perform that action at this time.
0 commit comments