1
0
Fork 0

*** empty log message ***

This commit is contained in:
bagyenda 2010-07-02 13:39:27 +00:00
parent 8c51f383d7
commit 6e23d68a16
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,5 @@
2010-07-02 P. A. Bagyenda <bagyenda@dsmagic.com>
* Fixed crash due to octstr_delete on immutable string in mm7 receiver
2010-05-26 P. A. Bagyenda <bagyenda@dsmagic.com>
* Misc. patches/cleanups thanks to SATOH Fumiyasu <fumiyas at osstech.jp>
2010-01-25 P. A. Bagyenda <bagyenda@dsmagic.com>

View File

@ -228,7 +228,7 @@ static int mm7soap_receive(MmsBoxHTTPClientInfo *h)
&expiryt, &delivert, &uaprof, &uaprof_tstamp);
if (!from)
from = octstr_imm("anon@anon");
from = octstr_create("anon@anon");
qdir = get_mmsbox_queue_dir(from, to, h->m, &mmc_id); /* get routing info. */

View File

@ -861,7 +861,8 @@ Octstr *get_mmsbox_queue_dir(Octstr *from, List *to, MmscGrp *m,
octstr_destroy(fto);
} else {
if (unified_prefix)
_mms_fixup_address(&fto, octstr_get_cstr(unified_prefix), strip_prefixes, 1);
_mms_fixup_address(&fto, octstr_get_cstr(unified_prefix), strip_prefixes, 1);
gwlist_insert(to, 0, fto);
octstr_destroy(xto);
}