Commit 76de8a63 authored by navid's avatar navid

Fix the MME crashes with Illegal instruction in nas_timer (contributed by D. Rupprecht)

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7717 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 1e677862
......@@ -543,7 +543,8 @@ static nas_timer_entry_t *_nas_timer_db_create_entry(
if (te != NULL) {
te->itv.tv_sec = sec;
te->itv.tv_usec = 0;
te->tv = te->itv;
te->tv.tv_sec = te->itv.tv_sec;
te->tv.tv_usec = te->itv.tv_usec;
te->cb = cb;
te->args = args;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment