Diff between 3e48e93775a2c54b114ae3cec91aedfdd74cc3e4 and 832a725f355e222169727f282c8996536cca1c17
Changed Files
| File | Additions | Deletions | Status |
| obexd/plugins/mas.c | +5 | -0 | modified |
Full Patch
diff --git a/obexd/plugins/mas.c b/obexd/plugins/mas.c
index f6d4799..ea2b4b2 100644
--- a/obexd/plugins/mas.c
+++ b/obexd/plugins/mas.c
@@ -110,6 +110,7 @@ struct mas_session {
gboolean nth_call;
GString *buffer;
map_ap_t *inparams;
+ map_ap_t *outparams;
};
static const uint8_t MAS_TARGET[TARGET_SIZE] = {
@@ -131,6 +132,8 @@ static int get_params(struct obex_session *os, struct mas_session *mas)
return -EBADR;
}
+ mas->outparams = map_ap_new();
+
return 0;
}
@@ -143,6 +146,8 @@ static void reset_request(struct mas_session *mas)
map_ap_free(mas->inparams);
mas->inparams = NULL;
+ map_ap_free(mas->outparams);
+ mas->outparams = NULL;
mas->nth_call = FALSE;
mas->finished = FALSE;