Files
osmo-mgw/rrlp-ephemeris/asn1c_patches/01_fix_per_encoding_dieter.diff
Sylvain Munaut b1a83585a2 rrlp-ephemeris: Add directory with asn1c patches
- One is just to improve the debug prints
 - The other fixes a problem in PER encoding found by Dieter Spaar.

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-01-07 10:22:24 +01:00

18 lines
609 B
Diff

Index: skeletons/per_support.c
===================================================================
--- skeletons/per_support.c (revision 1407)
+++ skeletons/per_support.c (working copy)
@@ -336,7 +336,12 @@
buf[3] = bits;
else {
ASN_DEBUG("->[PER out split %d]", obits);
+#if 1 // Dieter
+ po->nboff -= obits; // undo incrementation from a few lines above
+ per_put_few_bits(po, bits >> (obits - 24), 24); // shift according to the rest of the bits
+#else
per_put_few_bits(po, bits >> 8, 24);
+#endif
per_put_few_bits(po, bits, obits - 24);
ASN_DEBUG("<-[PER out split %d]", obits);
}