remove (incorrect) compiler warning regarding unitialized variable

git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1120 59561ff5-6e30-0410-9f3c-9617f08c8826
This commit is contained in:
vlm 2006-07-27 09:56:13 +00:00
parent d4ae41c227
commit 41ff762a97
1 changed files with 1 additions and 1 deletions

View File

@ -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;