tools lib traceevent: Remove malloc_or_die from event-plugin.c
authorJiri Olsa <[email protected]>
Tue, 3 Dec 2013 13:09:36 +0000 (14:09 +0100)
committerArnaldo Carvalho de Melo <[email protected]>
Wed, 4 Dec 2013 18:35:48 +0000 (15:35 -0300)
Removing malloc_or_die calls from event-plugin.c,
replacing them with standard malloc and error path.

Suggested-by: Namhyung Kim <[email protected]>
Signed-off-by: Jiri Olsa <[email protected]>
Acked-by: Steven Rostedt <[email protected]>
Cc: Corey Ashford <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Steven Rostedt <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/lib/traceevent/event-plugin.c

index d272d87aa7d413fb8800bb077c8975a01f72f1bf..125f5676bcb5c1f46259b3bf4542efdde96e3101 100644 (file)
@@ -47,7 +47,11 @@ load_plugin(struct pevent *pevent, const char *path,
        char *plugin;
        void *handle;
 
-       plugin = malloc_or_die(strlen(path) + strlen(file) + 2);
+       plugin = malloc(strlen(path) + strlen(file) + 2);
+       if (!plugin) {
+               warning("could not allocate plugin memory\n");
+               return;
+       }
 
        strcpy(plugin, path);
        strcat(plugin, "/");
@@ -71,7 +75,12 @@ load_plugin(struct pevent *pevent, const char *path,
                goto out_free;
        }
 
-       list = malloc_or_die(sizeof(*list));
+       list = malloc(sizeof(*list));
+       if (!list) {
+               warning("could not allocate plugin memory\n");
+               goto out_free;
+       }
+
        list->next = *plugin_list;
        list->handle = handle;
        list->name = plugin;
@@ -163,7 +172,11 @@ load_plugins(struct pevent *pevent, const char *suffix,
        if (!home)
                return;
 
-       path = malloc_or_die(strlen(home) + strlen(LOCAL_PLUGIN_DIR) + 2);
+       path = malloc(strlen(home) + strlen(LOCAL_PLUGIN_DIR) + 2);
+       if (!path) {
+               warning("could not allocate plugin memory\n");
+               return;
+       }
 
        strcpy(path, home);
        strcat(path, "/");