pike.git/
src/
stralloc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2008-06-23
2008-06-23 18:56:56 by Martin Stjernholm <mast@lysator.liu.se>
b8e7966f803d52f4b4c9af04c93e1e30b78a0d85 (
11
lines) (+
6
/-
5
)
[
Show
|
Annotate
]
Branch:
7.4
Ensure proper wide NUL termination in wide string builders.
Rev: src/stralloc.c:1.159
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: stralloc.c,v 1.
158
2005
/
01
/
19
13
:
05
:
55
grubba
Exp $
+
|| $Id: stralloc.c,v 1.
159
2008
/
06
/
23
18
:
56
:
56
mast
Exp $
*/ #include "global.h"
24:
#include <ctype.h> #include <math.h>
-
RCSID("$Id: stralloc.c,v 1.
158
2005
/
01
/
19
13
:
05
:
55
grubba
Exp $");
+
RCSID("$Id: stralloc.c,v 1.
159
2008
/
06
/
23
18
:
56
:
56
mast
Exp $");
/* #define STRALLOC_USE_PRIMES */
1959:
s->malloced=256; s->s=begin_wide_shared_string(256,mag); s->s->len=0;
-
s->s
->str[
0
]
=
0;
+
low_set_index (
s->s
,
0
,
0
)
;
s->known_shift=0; }
1968:
s->malloced=length; s->s=begin_wide_shared_string(length,mag); s->s->len=0;
-
s->s
->str[
0
]
=
0;
+
low_set_index (
s->s
,
0
,
0
)
;
s->known_shift=0; }
2156:
s->known_shift=0; s->s->len=0; /* Ensure NUL-termination */
-
s->s
->str[
0
]
=
0;
+
low_set_index (
s->s
,
0
,
0
)
;
} PMOD_EXPORT void free_string_builder(struct string_builder *s)