aboutsummaryrefslogtreecommitdiffstats
path: root/ui/tap-rlc-graph.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-12-29 00:00:59 -0800
committerGuy Harris <guy@alum.mit.edu>2015-12-29 08:01:54 +0000
commitddd217469de7032a3509369b3ca7dfca55374c2e (patch)
tree781bd60b0289cd9d0c8cabfacecbe0eb8df7c76e /ui/tap-rlc-graph.c
parent98456ce10f92dcb58c65ca0506c143d5e767ddd1 (diff)
Always supply a g_mallocated error message from select_rlc_lte_session().
That way, we don't have to pass a "free this" indication separately. While we're at it, don't just free the error message, *display* it in all cases where rlc_graph_segment_list_get() fails. (I wish more programming languages had a proper string type, including some whose names consist solely of the third letter of the alphabet, but I digress....) Change-Id: I99f8b088aa19bc8fbb178bdb36d85ba5b89c06e0 Reviewed-on: https://code.wireshark.org/review/12902 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/tap-rlc-graph.c')
-rw-r--r--ui/tap-rlc-graph.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/ui/tap-rlc-graph.c b/ui/tap-rlc-graph.c
index 20b8a582ca..b964ea272c 100644
--- a/ui/tap-rlc-graph.c
+++ b/ui/tap-rlc-graph.c
@@ -108,7 +108,7 @@ tap_lte_rlc_packet(void *pct, packet_info *pinfo _U_, epan_dissect_t *edt _U_, c
* depending upon which GUI toolkit is being used. */
rlc_lte_tap_info *select_rlc_lte_session(capture_file *cf,
struct rlc_segment *hdrs,
- gchar **err_msg, gboolean *free_err_msg)
+ gchar **err_msg)
{
frame_data *fdata;
epan_dissect_t edt;
@@ -127,7 +127,6 @@ rlc_lte_tap_info *select_rlc_lte_session(capture_file *cf,
/* No real filter yet */
if (!dfilter_compile("rlc-lte", &sfcode, err_msg)) {
- *free_err_msg = TRUE;
return NULL;
}
@@ -156,16 +155,14 @@ rlc_lte_tap_info *select_rlc_lte_session(capture_file *cf,
/* This "shouldn't happen", as the graph menu items won't
* even be enabled if the selected packet isn't an RLC PDU.
*/
- *err_msg = "Selected packet doesn't have an RLC PDU";
- *free_err_msg = FALSE;
+ *err_msg = g_strdup("Selected packet doesn't have an RLC PDU");
return NULL;
}
/* XXX fix this later, we should show a dialog allowing the user
* to select which session he wants here */
if (th.num_hdrs>1){
/* Can only handle a single RLC channel yet */
- *err_msg = "The selected packet has more than one LTE RLC channel in it.";
- *free_err_msg = FALSE;
+ *err_msg = g_strdup("The selected packet has more than one LTE RLC channel in it.");
return NULL;
}
@@ -250,7 +247,7 @@ int rlc_lte_tap_for_graph_data(void *pct, packet_info *pinfo, epan_dissect_t *ed
/* If don't have a channel, try to get one from current frame, then read all frames looking for data
* for that channel. */
gboolean rlc_graph_segment_list_get(capture_file *cf, struct rlc_graph *g, gboolean stream_known,
- char **err_string, gboolean *free_err_string)
+ char **err_string)
{
struct rlc_segment current;
GString *error_string;
@@ -263,7 +260,7 @@ gboolean rlc_graph_segment_list_get(capture_file *cf, struct rlc_graph *g, gbool
}
if (!stream_known) {
- struct rlc_lte_tap_info *header = select_rlc_lte_session(cf, &current, err_string, free_err_string);
+ struct rlc_lte_tap_info *header = select_rlc_lte_session(cf, &current, err_string);
if (!header) {
/* Didn't have a channel, and current frame didn't provide one */
return FALSE;
@@ -294,8 +291,7 @@ gboolean rlc_graph_segment_list_get(capture_file *cf, struct rlc_graph *g, gbool
remove_tap_listener(g);
if (g->last_segment == NULL) {
- *err_string = "No packets found";
- *free_err_string = FALSE;
+ *err_string = g_strdup("No packets found");
return FALSE;
}