Changes of Revision 406

libosmocore.spec Changed
x
 
1
@@ -14,13 +14,13 @@
2
 
3
 Name:           libosmocore
4
 Requires: osmocom-master
5
-Version: 1.11.0.8.92aa
6
+Version: 1.11.0.11.8111
7
 Release:        0
8
 Summary:        The Open Source Mobile Communications Core Library
9
 License:        GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND AGPL-3.0-or-later
10
 Group:          Productivity/Telephony/Utilities
11
 Url:            https://osmocom.org/projects/libosmocore/wiki/Libosmocore
12
-Source: libosmocore_1.11.0.8.92aa.tar.xz
13
+Source: libosmocore_1.11.0.11.8111.tar.xz
14
 Source1: rpmlintrc
15
 BuildRequires:  automake >= 1.6
16
 BuildRequires:  libtool >= 2
17
commit_8111511b1910103572ccc91cf8df93276b67bbb2.txt Added
commit_92aa65e3cd426919cb67aabd37b4efa41774c2d9.txt Deleted
libosmocore_1.11.0.8.92aa.dsc -> libosmocore_1.11.0.11.8111.dsc Changed
22
 
1
@@ -2,7 +2,7 @@
2
 Source: libosmocore
3
 Binary: libosmocore, libosmocodec4, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore22, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm20, libosmogsm-doc, libosmoisdn0, libosmoisdn-doc, libosmovty13, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmosim-doc, libosmousb0, libosmousb-doc, libosmocore-dev, libosmocore-utils, libosmocore-dbg
4
 Architecture: any all
5
-Version: 1.11.0.8.92aa
6
+Version: 1.11.0.11.8111
7
 Maintainer: Osmocom team <openbsc@lists.osmocom.org>
8
 Homepage: https://projects.osmocom.org/projects/libosmocore
9
 Standards-Version: 3.9.8
10
@@ -35,8 +35,8 @@
11
  libosmovty-doc deb doc optional arch=all
12
  libosmovty13 deb libs optional arch=any
13
 Checksums-Sha1:
14
- 8ee67e073418aac04c52a195fc5748aa80258978 1126836 libosmocore_1.11.0.8.92aa.tar.xz
15
+ 992e243392d25eeac0329713b48e2a43b2eec4e9 1126824 libosmocore_1.11.0.11.8111.tar.xz
16
 Checksums-Sha256:
17
- d852c82e36214e0a7821dd5906b236a17eca07abd10cfa93c846af560c473583 1126836 libosmocore_1.11.0.8.92aa.tar.xz
18
+ 3743e0b6aff7160dc2906656215b9b6261c0275632dfb27941f366d498050b79 1126824 libosmocore_1.11.0.11.8111.tar.xz
19
 Files:
20
- 5d32ebbbee312b85648f84ccf19852c1 1126836 libosmocore_1.11.0.8.92aa.tar.xz
21
+ bdca7c3c9aa2bf0ab35243f17e402523 1126824 libosmocore_1.11.0.11.8111.tar.xz
22
libosmocore_1.11.0.8.92aa.tar.xz/.tarball-version -> libosmocore_1.11.0.11.8111.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-1.11.0.8-92aa
3
+1.11.0.11-8111
4
libosmocore_1.11.0.8.92aa.tar.xz/debian/changelog -> libosmocore_1.11.0.11.8111.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-libosmocore (1.11.0.8.92aa) unstable; urgency=medium
3
+libosmocore (1.11.0.11.8111) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Mon, 17 Mar 2025 12:02:19 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Mon, 17 Mar 2025 18:17:35 +0000
9
 
10
 libosmocore (1.11.0) unstable; urgency=medium
11
 
12
libosmocore_1.11.0.8.92aa.tar.xz/src/gsm/lapdm.c -> libosmocore_1.11.0.11.8111.tar.xz/src/gsm/lapdm.c Changed
35
 
1
@@ -136,6 +136,7 @@
2
              const char *name)
3
 {
4
    memset(dl, 0, sizeof(*dl));
5
+   INIT_LLIST_HEAD(&dl->tx_ui_queue);
6
    dl->entity = entity;
7
    lapd_dl_init2(&dl->dl, 1, 8, 251, name); /* Section 5.8.5 of TS 04.06 */
8
    dl->dl.reestablish = 0; /* GSM uses no reestablish */
9
@@ -200,7 +201,6 @@
10
            lapdm_dl_init(&le->datalinki, le, (t200_ms) ? t200_msi : 0, n200, name);
11
        } else
12
            lapdm_dl_init(&le->datalinki, le, (t200_ms) ? t200_msi : 0, n200, NULL);
13
-       INIT_LLIST_HEAD(&le->datalinki.tx_ui_queue);
14
    }
15
 
16
    lapdm_entity_set_mode(le, mode);
17
@@ -376,6 +376,8 @@
18
        *msgb_push(msg, 1) = pad;
19
        *msgb_push(msg, 1) = link_id;
20
        *msgb_push(msg, 1) = chan_nr;
21
+       /* Take ownership of msg, since we are keeping it around in this layer: */
22
+       talloc_steal(tall_lapd_ctx, msg);
23
        msgb_enqueue(&dl->dl.tx_queue, msg);
24
        return 0;
25
    }
26
@@ -403,6 +405,8 @@
27
        *msgb_push(msg, 1) = pad;
28
        *msgb_push(msg, 1) = link_id;
29
        *msgb_push(msg, 1) = chan_nr;
30
+       /* Take ownership of msg, since we are keeping it around in this layer: */
31
+       talloc_steal(tall_lapd_ctx, msg);
32
        msgb_enqueue(&dl->tx_ui_queue, msg);
33
        return 0;
34
    }
35
libosmocore_1.11.0.8.92aa.tar.xz/src/isdn/lapd_core.c -> libosmocore_1.11.0.11.8111.tar.xz/src/isdn/lapd_core.c Changed
10
 
1
@@ -1922,6 +1922,8 @@
2
 
3
    LOGDL(dl, LOGL_INFO, "writing message to send-queue: l3len: %d\n", msgb_l3len(msg));
4
 
5
+   /* Take ownership of msg, since we are keeping it around in this layer: */
6
+   talloc_steal(tall_lapd_ctx, msg);
7
    /* Write data into the send queue */
8
    msgb_enqueue(&dl->send_queue, msg);
9
 
10