aboutsummaryrefslogtreecommitdiffstats
path: root/skeletons
diff options
context:
space:
mode:
authorvlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826>2006-07-27 09:56:13 +0000
committervlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826>2006-07-27 09:56:13 +0000
commit41ff762a97e6b8158824a42c9125d07ef5099d1e (patch)
tree51cbb5b6315c9f1984516d862e12251dd36a7433 /skeletons
parentd4ae41c2270e0921f8b284ab1ac29d290db771ae (diff)
remove (incorrect) compiler warning regarding unitialized variable
git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1120 59561ff5-6e30-0410-9f3c-9617f08c8826
Diffstat (limited to 'skeletons')
-rw-r--r--skeletons/OCTET_STRING.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/skeletons/OCTET_STRING.c b/skeletons/OCTET_STRING.c
index df25df94..c5a4ed34 100644
--- a/skeletons/OCTET_STRING.c
+++ b/skeletons/OCTET_STRING.c
@@ -996,7 +996,7 @@ static ssize_t OCTET_STRING__convert_entrefs(void *sptr, const void *chunk_buf,
if(len == 1 /* "&" */) goto want_more;
if(p[1] == 0x23 /* '#' */) {
const char *pval; /* Pointer to start of digits */
- int32_t val; /* Entity reference value */
+ int32_t val = 0; /* Entity reference value */
int base;
if(len == 2 /* "&#" */) goto want_more;