aboutsummaryrefslogtreecommitdiffstats
path: root/epan/emem.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-06-15 15:06:50 -0400
committerMichael Mann <mmann78@netscape.net>2014-06-16 15:25:53 +0000
commit83f9cc6603387c8394060b36e719651bb87b6c6b (patch)
tree23a6d9408ec8c8433a7cfa756a081809489040e0 /epan/emem.h
parente46c1af0f00a9e76eb90672f03b36d13f8183e61 (diff)
Remove last caller of se_strdup_printf
Also remove that function as it is now unused. Fix what appeared to be a memory leak in the manual address resolution dialog while in the neighbourhood. Change-Id: I75128ab0f95e5a7673f92bfeea45191f00581c25 Reviewed-on: https://code.wireshark.org/review/2244 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/emem.h')
-rw-r--r--epan/emem.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/epan/emem.h b/epan/emem.h
index 2f3373aad9..2d18004f40 100644
--- a/epan/emem.h
+++ b/epan/emem.h
@@ -120,11 +120,6 @@ WS_DLL_PUBLIC
void* se_alloc0(size_t size) G_GNUC_MALLOC;
#define se_new0(type) ((type*)se_alloc0(sizeof(type)))
-/* Create a formatted string with a capture lifetime scope */
-WS_DLL_PUBLIC
-gchar* se_strdup_printf(const gchar* fmt, ...)
- G_GNUC_MALLOC G_GNUC_PRINTF(1, 2);
-
/** release all memory allocated */
void se_free_all(void);