Fix two warnings
parent
001eb0687b
commit
052b756840
|
@ -2,6 +2,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "../test_util.h"
|
#include "../test_util.h"
|
||||||
|
#include "../../util.h"
|
||||||
|
|
||||||
OPTNONE int main(void) {
|
OPTNONE int main(void) {
|
||||||
char *p = malloc(256 * 1024);
|
char *p = malloc(256 * 1024);
|
||||||
|
@ -9,7 +10,7 @@ OPTNONE int main(void) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
free(p);
|
free(p);
|
||||||
char *q = malloc(256 * 1024);
|
UNUSED char *q = malloc(256 * 1024);
|
||||||
p[64 * 1024 + 1] = 'a';
|
p[64 * 1024 + 1] = 'a';
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "../test_util.h"
|
#include "../test_util.h"
|
||||||
|
#include "../../util.h"
|
||||||
|
|
||||||
OPTNONE int main(void) {
|
OPTNONE int main(void) {
|
||||||
char *p = malloc(128);
|
char *p = malloc(128);
|
||||||
|
@ -9,7 +10,7 @@ OPTNONE int main(void) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
free(p);
|
free(p);
|
||||||
char *q = malloc(128);
|
UNUSED char *q = malloc(128);
|
||||||
|
|
||||||
p[65] = 'a';
|
p[65] = 'a';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue