Commit 2acd0d94 authored by Cedric Roux's avatar Cedric Roux

- Fix uninitialized pointer

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4437 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 25d86e72
......@@ -53,7 +53,7 @@ int s1ap_eNB_handle_nas_first_req(
instance_t instance, s1ap_nas_first_req_t *s1ap_nas_first_req_p)
{
s1ap_eNB_instance_t *instance_p;
struct s1ap_eNB_mme_data_s *mme_desc_p;
struct s1ap_eNB_mme_data_s *mme_desc_p = NULL;
struct s1ap_eNB_ue_context_s *ue_desc_p;
s1ap_message message;
......
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