aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-07-03 12:38:59 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-07-03 15:30:26 +0200
commit9380f5d2181c63922627cbff6abe5e3cd05523e4 (patch)
tree928d2080266962eb2fc307538b9835982f437236 /src/tbf.h
parentac89a555fa73b24a77bb861811774a5af885bc84 (diff)
tbf: Add GprsMs* argument to update() and use it in reuse_tbf
Since set_ms() is caled on the new DL TBF, the old DL TBF loses the reference to the MS object. This will lead to a segfault, when update() is called in reuse_tbf(). This commit adds an optional GprsMs* parameter to update() and uses it for the slot allocation. This fixes a TbfTest crash that would otherwise occur after applying the next commit. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/tbf.h')
-rw-r--r--src/tbf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tbf.h b/src/tbf.h
index 840125a5..82ade4e8 100644
--- a/src/tbf.h
+++ b/src/tbf.h
@@ -131,7 +131,7 @@ struct gprs_rlcmac_tbf {
int rlcmac_diag();
- int update();
+ int update(GprsMs *ms = NULL);
void handle_timeout();
void stop_timer();
void stop_t3191();