about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/autocomplete.c7
-rw-r--r--src/tools/parser.c6
2 files changed, 2 insertions, 11 deletions
diff --git a/src/tools/autocomplete.c b/src/tools/autocomplete.c
index 461c2b40..227b79e0 100644
--- a/src/tools/autocomplete.c
+++ b/src/tools/autocomplete.c
@@ -314,7 +314,6 @@ autocomplete_complete(Autocomplete ac, const gchar* search_str, gboolean quote,
 static char*
 _autocomplete_param_common(const char* const input, char* command, autocomplete_func func, Autocomplete ac, gboolean quote, gboolean previous, void* context)
 {
-    GString* auto_msg;
     char* command_cpy;
     char* result = NULL;
     int len;
@@ -344,11 +343,7 @@ _autocomplete_param_common(const char* const input, char* command, autocomplete_
         }
 
         if (found) {
-            auto_msg = g_string_new(command_cpy);
-            g_string_append(auto_msg, found);
-            free(found);
-            result = auto_msg->str;
-            g_string_free(auto_msg, FALSE);
+            result = g_strdup_printf("%s%s", command_cpy, found);
         }
     }
     free(command_cpy);
diff --git a/src/tools/parser.c b/src/tools/parser.c
index 30c1961f..93c765f5 100644
--- a/src/tools/parser.c
+++ b/src/tools/parser.c
@@ -295,7 +295,6 @@ get_start(const char* const string, int tokens)
     GString* result = g_string_new("");
     int length = g_utf8_strlen(string, -1);
     gboolean in_quotes = FALSE;
-    char* result_str = NULL;
     int num_tokens = 0;
 
     // include first token
@@ -325,10 +324,7 @@ get_start(const char* const string, int tokens)
         }
     }
 
-    result_str = result->str;
-    g_string_free(result, FALSE);
-
-    return result_str;
+    return g_string_free(result, FALSE);
 }
 
 GHashTable*
07f7cac2f3c5b7b74d16296d5afb57ff7e908130'>^
8c8c21f ^
80e891a ^

8c8c21f ^


80e891a ^

8c8c21f ^

bcd03c4 ^
80e891a ^
bcd03c4 ^
8c8c21f ^


80e891a ^
6728a11 ^
80e891a ^
8c8c21f ^
6728a11 ^
80e891a ^
8c8c21f ^
80e891a ^
bcd03c4 ^
8c8c21f ^

80e891a ^


8c8c21f ^

80e891a ^

8c8c21f ^

80e891a ^
5b2e3a0 ^
80e891a ^
8c8c21f ^
80e891a ^
8c8c21f ^




8c8c21f ^




80e891a ^
8c8c21f ^




5b2e3a0 ^
8c8c21f ^



80e891a ^

5b2e3a0 ^
6728a11 ^
8c8c21f ^
5b2e3a0 ^
8c8c21f ^



5b2e3a0 ^

8c8c21f ^

80e891a ^





d35213e ^




8c8c21f ^
bcd03c4 ^









1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126