mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
warnings: Work around MSVC bug
MSVC apparently complains when passing a `const char **` to memset. Unlike `const char *const *`, this isn't a pointer to const memory.
This commit is contained in:
parent
cfbe68e468
commit
d725addd92
@ -159,7 +159,8 @@ static int run_test2(xmlDictPtr parent) {
|
||||
fprintf(stderr, "Out of memory while creating sub-dictionary\n");
|
||||
exit(1);
|
||||
}
|
||||
memset(test2, 0, sizeof(test2));
|
||||
/* Cast to avoid buggy warning on MSVC. */
|
||||
memset((void *) test2, 0, sizeof(test2));
|
||||
|
||||
/*
|
||||
* Fill in NB_STRINGS_MIN, at this point the dictionary should not grow
|
||||
@ -322,7 +323,8 @@ static int run_test1(void) {
|
||||
fprintf(stderr, "Out of memory while creating dictionary\n");
|
||||
exit(1);
|
||||
}
|
||||
memset(test1, 0, sizeof(test1));
|
||||
/* Cast to avoid buggy warning on MSVC. */
|
||||
memset((void *) test1, 0, sizeof(test1));
|
||||
|
||||
/*
|
||||
* Fill in NB_STRINGS_MIN, at this point the dictionary should not grow
|
||||
|
Loading…
x
Reference in New Issue
Block a user