Removed unused variable 'bytes' in oid_subid2encoded.

svn path=/trunk/; revision=30196
This commit is contained in:
Stig Bjørlykke 2009-09-29 19:16:00 +00:00
parent e384c2d682
commit 4b7763036b
1 changed files with 1 additions and 2 deletions

View File

@ -915,7 +915,6 @@ guint oid_subid2encoded(guint subids_len, guint32* subids, guint8** bytes_p) {
guint bytelen = 0;
guint i;
guint32 subid;
guint8* bytes;
guint8* b;
if ( !subids || subids_len <= 0) {
@ -942,7 +941,7 @@ guint oid_subid2encoded(guint subids_len, guint32* subids, guint8** bytes_p) {
subid = subids[i];
} while ( i++ < subids_len );
*bytes_p = b = bytes = ep_alloc(bytelen);
*bytes_p = b = ep_alloc(bytelen);
subid = (subids[0] * 40) + subids[1];
i = 2;