aboutsummaryrefslogblamecommitdiffstats
path: root/sway/security.c
blob: cc0d3f6611c8df894bef5a900c3c0437c3357d18 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                              
#define _XOPEN_SOURCE 700
#include <stdlib.h>
#include <string.h>
#include "sway/security.h"

struct command_policy *alloc_command_policy(const char *command) {
	struct command_policy *policy = malloc(sizeof(struct command_policy));
	if (!policy) {
		return NULL;
	}
	policy->command = strdup(command);
	if (!policy->command) {
		free(policy);
		return NULL;
	}
	policy->context = 0;
	return policy;
}