#include <stdlib.h>
#include <unistd.h>
#include <string.h>
+#include <errno.h>
#include <ncurses.h>
#include <fcntl.h>
#include <sys/ioctl.h>
int attr_modeline, attr_focus_line, attr_error;
+/********************************************************************/
+
+/* malloc with error checking. */
+
+void *safe_malloc(size_t n) {
+ void *p = malloc(n);
+ if (!p && n != 0) {
+ printf("Can not allocate memory: %s\n", strerror(errno));
+ exit(EXIT_FAILURE);
+ }
+ return p;
+}
+
/*********************************************************************/
void inject_into_tty_buffer(char *string, int add_control_qs) {
int k;
struct hash_table_t *hash_table;
- hash_table = (struct hash_table_t *) malloc(sizeof(struct hash_table_t));
+ hash_table = safe_malloc(sizeof(struct hash_table_t));
hash_table->size = size;
- hash_table->entries = (int *) malloc(hash_table->size * sizeof(int));
+ hash_table->entries = safe_malloc(hash_table->size * sizeof(int));
for(k = 0; k < hash_table->size; k++) {
hash_table->entries[k] = -1;
}
matcher->splitted_patterns =
- (char *) malloc((strlen(pattern) + 1) * sizeof(char));
+ safe_malloc((strlen(pattern) + 1) * sizeof(char));
matcher->patterns =
- (char **) malloc(matcher->nb_patterns * sizeof(char *));
+ safe_malloc(matcher->nb_patterns * sizeof(char *));
strcpy(matcher->splitted_patterns, pattern);
}
if(dup < 0) {
- lines[*nb_lines] = (char *) malloc((strlen(new_line) + 1) * sizeof(char));
+ lines[*nb_lines] = safe_malloc((strlen(new_line) + 1) * sizeof(char));
strcpy(lines[*nb_lines], new_line);
} else {
/* The string was already in there, so we do not allocate a new
else if(strcmp(argv[i], "-t") == 0) {
check_opt(argc, argv, i, 1, "<title>");
free(title);
- title = (char *) malloc((strlen(argv[i+1]) + 1) * sizeof(char));
+ title = safe_malloc((strlen(argv[i+1]) + 1) * sizeof(char));
strcpy(title, argv[i+1]);
i += 2;
}
exit(error);
}
- lines = (char **) malloc(nb_lines_max * sizeof(char *));
+ lines = safe_malloc(nb_lines_max * sizeof(char *));
nb_lines = 0;
label_separator and transform control characters to printable
ones */
- labels = (char **) malloc(nb_lines * sizeof(char *));
+ labels = safe_malloc(nb_lines * sizeof(char *));
for(l = 0; l < nb_lines; l++) {
char *s, *t;
e += strlen(u);
}
- labels[l] = (char *) malloc((e + 1) * sizeof(char));
+ labels[l] = safe_malloc((e + 1) * sizeof(char));
t = lines[l];
s = labels[l];
while(*t && *t != label_separator) {