Adjustments.
authorSebastian Hammer <quinn@indexdata.com>
Tue, 14 Feb 1995 11:54:33 +0000 (11:54 +0000)
committerSebastian Hammer <quinn@indexdata.com>
Tue, 14 Feb 1995 11:54:33 +0000 (11:54 +0000)
odr/ber_any.c
odr/ber_tag.c

index 71846df..84d07a6 100644 (file)
@@ -4,7 +4,10 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: ber_any.c,v $
- * Revision 1.3  1995-02-10 18:57:24  quinn
+ * Revision 1.4  1995-02-14 11:54:33  quinn
+ * Adjustments.
+ *
+ * Revision 1.3  1995/02/10  18:57:24  quinn
  * More in the way of error-checking.
  *
  * Revision 1.2  1995/02/10  15:55:28  quinn
@@ -44,7 +47,7 @@ int ber_any(ODR o, Odr_any **p)
 }
 
 /*
- * Return length of BER-package or -1.
+ * Return length of BER-package or 0.
  */
 int completeBER(unsigned char *buf, int len)
 {
@@ -66,12 +69,12 @@ int completeBER(unsigned char *buf, int len)
     b += res;
     len -= res;
     if (ll >= 0)
-       return (len >= ll ? ll + (b-buf) : -1);
+       return (len >= ll ? ll + (b-buf) : 0);
     if (!cons)
        return 0;    
     while (1)
     {
-       if ((res = completeBER(b, len)) < 0)
+       if (!(res = completeBER(b, len)))
            return 0;
        b += res;
        len -= res;
index 1c53686..c5ec9eb 100644 (file)
@@ -4,7 +4,10 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: ber_tag.c,v $
- * Revision 1.5  1995-02-10 18:57:24  quinn
+ * Revision 1.6  1995-02-14 11:54:33  quinn
+ * Adjustments.
+ *
+ * Revision 1.5  1995/02/10  18:57:24  quinn
  * More in the way of error-checking.
  *
  * Revision 1.4  1995/02/10  15:55:28  quinn
@@ -44,8 +47,11 @@ int ber_tag(ODR o, void *p, int class, int tag, int *constructed)
     if (o->direction == ODR_DECODE)
        *pp = 0;
     o->t_class = -1;
-    if (o->buf == o->bp)   /* This is insurance. It shouldn't be necessary */
+    if (o->stackp < 0)
+    {
+       o->bp = o->buf;
        lclass = -1;
+    }
     switch (o->direction)
     {
        case ODR_ENCODE: