diff options
author | Jörg Mayer <jmayer@loplof.de> | 2013-09-15 14:33:38 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2013-09-15 14:33:38 +0000 |
commit | c65459c729d0ecafd550a2c4ad5fea4caaa4dae0 (patch) | |
tree | a4f9f2031da9e8581e1d77d349c9d2f2e0152bb3 /asn1/rrc/rrc.cnf | |
parent | b936b046deb017f2a30afecdefe4e76b3d08737d (diff) | |
download | wireshark-c65459c729d0ecafd550a2c4ad5fea4caaa4dae0.tar.gz wireshark-c65459c729d0ecafd550a2c4ad5fea4caaa4dae0.tar.bz2 wireshark-c65459c729d0ecafd550a2c4ad5fea4caaa4dae0.zip |
emem -> wmem (don't forget about .cnf)
svn path=/trunk/; revision=52058
Diffstat (limited to 'asn1/rrc/rrc.cnf')
-rw-r--r-- | asn1/rrc/rrc.cnf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/rrc/rrc.cnf b/asn1/rrc/rrc.cnf index a50cf52a90..5a06d84e49 100644 --- a/asn1/rrc/rrc.cnf +++ b/asn1/rrc/rrc.cnf @@ -791,7 +791,7 @@ HNBName TYPE=FT_STRING DISPLAY=BASE_NONE #.FN_FTR H-RNTI rrcinf = (struct rrc_info *)p_get_proto_data(actx->pinfo->fd, proto_rrc, 0); if (!rrcinf) { - rrcinf = se_new0(struct rrc_info); + rrcinf = wmem_new0(wmem_file_scope(), struct rrc_info); p_add_proto_data(actx->pinfo->fd, proto_rrc, 0, rrcinf); } rrcinf->hrnti[actx->pinfo->fd->subnum] = tvb_get_ntohs(hrnti_tvb, 0); |