Ticket #438: sizeof-mismatch-amd64.patch
| File sizeof-mismatch-amd64.patch, 2.9 KB (added by edgomez, 5 years ago) |
|---|
-
tests/mock-plugin/mock_format.c
91 91 return TRUE; 92 92 } 93 93 94 static void destroy_file(char *input, size_t inpsize)94 static void destroy_file(char *input, unsigned int inpsize) 95 95 { 96 96 OSyncFile *file = (OSyncFile *)input; 97 97 -
formats/vformats-xml/xmlformat.c
232 232 233 233 234 234 235 void destroy_xmlformat(char *input, size_t inpsize)235 void destroy_xmlformat(char *input, unsigned int inpsize) 236 236 { 237 237 osync_xmlformat_unref((OSyncXMLFormat *)input); 238 238 } -
formats/vformats-xml/xmlformat.h
66 66 void add_values(VFormatAttribute *attr, OSyncXMLField *xmlfield, const char *encoding); 67 67 void add_values_from_nth_field_on(VFormatAttribute *attr, OSyncXMLField *xmlfield, const char *encoding, int nth); 68 68 69 void destroy_xmlformat(char *input, size_t inpsize);69 void destroy_xmlformat(char *input, unsigned int inpsize); 70 70 osync_bool copy_xmlformat(const char *input, unsigned int inpsize, char **output, unsigned int *outpsize, OSyncError **error); 71 71 char *print_xmlformat(const char *data, unsigned int size); 72 72 -
formats/file.c
92 92 return TRUE; 93 93 } 94 94 95 static void destroy_file(char *input, size_t inpsize)95 static void destroy_file(char *input, unsigned int inpsize) 96 96 { 97 97 OSyncFileFormat *file = (OSyncFileFormat *)input; 98 98 -
formats/event.c
79 79 *size = strlen(*data); 80 80 } 81 81 82 static void destroy_vevent(char *input, size_t inpsize)82 static void destroy_vevent(char *input, unsigned int inpsize) 83 83 { 84 84 g_free(input); 85 85 } -
formats/data.c
54 54 return TRUE; 55 55 } 56 56 57 static void destroy_plain(char *input, size_t inpsize)57 static void destroy_plain(char *input, unsigned int inpsize) 58 58 { 59 59 g_free(input); 60 60 } -
formats/contact.c
78 78 return FALSE; 79 79 } 80 80 81 static void destroy_vcard(char *input, size_t inpsize)81 static void destroy_vcard(char *input, unsigned int inpsize) 82 82 { 83 83 g_free(input); 84 84 }
