Projects
osmocom:nightly
open5gs
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 1024
View file
open5gs_2.7.5.4652.9217.202504122026.dsc -> open5gs_2.7.5.4653.1182.202504132026.dsc
Changed
@@ -2,7 +2,7 @@ Source: open5gs Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-sepp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg Architecture: any -Version: 2.7.5.4652.9217.202504122026 +Version: 2.7.5.4653.1182.202504132026 Maintainer: Harald Welte <laforge@gnumonks.org> Uploaders: Sukchan Lee <acetcom@gmail.com> Homepage: https://open5gs.org @@ -32,8 +32,8 @@ open5gs-udr deb net optional arch=any open5gs-upf deb net optional arch=any Checksums-Sha1: - ec643e52f07e3da2c8d6662112167d647b3a414c 14533136 open5gs_2.7.5.4652.9217.202504122026.tar.xz + b10cd23888c463fec0c00ad921df55801fb01d1a 14533244 open5gs_2.7.5.4653.1182.202504132026.tar.xz Checksums-Sha256: - c6c35623454483d849a3d9722283d28ace7c005f13e43f8d78b557302d4e0ad7 14533136 open5gs_2.7.5.4652.9217.202504122026.tar.xz + 54ebd1a62f4e154c90f07c30f14abd395aa46c40ac234502bf99e9a1b0741edb 14533244 open5gs_2.7.5.4653.1182.202504132026.tar.xz Files: - 2b10e1dd9cc6e73cd0b243510b822e3a 14533136 open5gs_2.7.5.4652.9217.202504122026.tar.xz + 79ee23efdc810ab95f66dc997c1d7be0 14533244 open5gs_2.7.5.4653.1182.202504132026.tar.xz
View file
open5gs_2.7.5.4652.9217.202504122026.tar.xz/.tarball-version -> open5gs_2.7.5.4653.1182.202504132026.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.7.5.4652-9217.202504122026 +2.7.5.4653-1182.202504132026
View file
open5gs_2.7.5.4652.9217.202504122026.tar.xz/debian/changelog -> open5gs_2.7.5.4653.1182.202504132026.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.7.5.4652.9217.202504122026) unstable; urgency=medium +open5gs (2.7.5.4653.1182.202504132026) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Sat, 12 Apr 2025 20:27:54 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Sun, 13 Apr 2025 20:27:54 +0000 open5gs (2.7.5) unstable; urgency=medium
View file
open5gs_2.7.5.4652.9217.202504122026.tar.xz/src/amf/context.c -> open5gs_2.7.5.4653.1182.202504132026.tar.xz/src/amf/context.c
Changed
@@ -977,12 +977,14 @@ ogs_yaml_iter_value(&network_name_iter); uint8_t size = strlen(c_network_name); uint8_t i; - for (i = 0;i<size;i++) { + for (i = 0; i < size && + (((i * 2) + 1) < + (OGS_NAS_MAX_NETWORK_NAME_LEN - 1)); + i++) { /* Workaround to convert the ASCII to USC-2 */ - network_full_name->namei*2 = 0; - network_full_name->name(i*2)+1 = + network_full_name->namei * 2 = 0; + network_full_name->namei * 2 + 1 = c_network_namei; - } network_full_name->length = size*2+1; network_full_name->coding_scheme = 1; @@ -994,12 +996,14 @@ ogs_yaml_iter_value(&network_name_iter); uint8_t size = strlen(c_network_name); uint8_t i; - for (i = 0;i<size;i++) { + for (i = 0; i < size && + (((i * 2) + 1) < + (OGS_NAS_MAX_NETWORK_NAME_LEN - 1)); + i++) { /* Workaround to convert the ASCII to USC-2 */ - network_short_name->namei*2 = 0; - network_short_name->name(i*2)+1 = + network_short_name->namei * 2 = 0; + network_short_name->namei * 2 + 1 = c_network_namei; - } network_short_name->length = size*2+1; network_short_name->coding_scheme = 1;
View file
open5gs_2.7.5.4652.9217.202504122026.tar.xz/src/mme/mme-context.c -> open5gs_2.7.5.4653.1182.202504132026.tar.xz/src/mme/mme-context.c
Changed
@@ -2014,12 +2014,14 @@ ogs_yaml_iter_value(&network_name_iter); uint8_t size = strlen(c_network_name); uint8_t i; - for (i = 0;i<size;i++) { + for (i = 0; i < size && + (((i * 2) + 1) < + (OGS_NAS_MAX_NETWORK_NAME_LEN - 1)); + i++) { /* Workaround to convert the ASCII to USC-2 */ - network_full_name->namei*2 = 0; - network_full_name->name(i*2)+1 = + network_full_name->namei * 2 = 0; + network_full_name->namei * 2 + 1 = c_network_namei; - } network_full_name->length = size*2+1; network_full_name->coding_scheme = 1; @@ -2031,12 +2033,14 @@ ogs_yaml_iter_value(&network_name_iter); uint8_t size = strlen(c_network_name); uint8_t i; - for (i = 0;i<size;i++) { + for (i = 0; i < size && + (((i * 2) + 1) < + (OGS_NAS_MAX_NETWORK_NAME_LEN - 1)); + i++) { /* Workaround to convert the ASCII to USC-2 */ - network_short_name->namei*2 = 0; - network_short_name->name(i*2)+1 = + network_short_name->namei * 2 = 0; + network_short_name->namei * 2 + 1 = c_network_namei; - } network_short_name->length = size*2+1; network_short_name->coding_scheme = 1;
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.