Neal H. Walfield, le Mon 22 Jul 2013 17:23:39 +0200, a écrit :
> At Fri, 19 Jul 2013 17:25:19 +0200,
> Justus Winter wrote:
> > +static char *path = NULL;
> > +static int insecure = 0;
>
> Don't explicitly initialize static variables to 0 or NULL. This takes
> up unnecessary space in the executab
At Fri, 19 Jul 2013 17:25:19 +0200,
Justus Winter wrote:
> +static char *path = NULL;
> +static int insecure = 0;
Don't explicitly initialize static variables to 0 or NULL. This takes
up unnecessary space in the executable and prevents using zero-filled
memory.
Neal
---
trans/Makefile |8 +-
trans/mtab.c | 682
2 files changed, 687 insertions(+), 3 deletions(-)
create mode 100644 trans/mtab.c
diff --git a/trans/Makefile b/trans/Makefile
index b3210b6..6eb51d0 100644
--- a/trans/Makefile
+++ b/t
---
trans/Makefile |8 +-
trans/mtab.c | 541
2 files changed, 546 insertions(+), 3 deletions(-)
create mode 100644 trans/mtab.c
diff --git a/trans/Makefile b/trans/Makefile
index b3210b6..6eb51d0 100644
--- a/trans/Makefile
+++ b/t