fix: satify clang nullability requirements

This commit is contained in:
2025-08-27 22:07:04 +02:00
parent 109c9bd0be
commit ff3e58ee5b
2 changed files with 11 additions and 11 deletions

View File

@@ -19,27 +19,27 @@ enum ExecType {
}; };
struct desktop_exec { struct desktop_exec {
char** args; char* NULLABLE* NNULLABLE args;
int arg_count; int arg_count;
}; };
struct session_exec { struct session_exec {
enum ExecType typ; enum ExecType typ;
union { union {
char* shell; char* NNULLABLE shell;
struct desktop_exec desktop; struct desktop_exec desktop;
}; };
}; };
static inline struct session_exec session_exec_shell(char* shell) { static inline struct session_exec session_exec_shell(char* NNULLABLE shell) {
return (struct session_exec){ return (struct session_exec){
.typ = EXEC_SHELL, .typ = EXEC_SHELL,
.shell = shell, .shell = shell,
}; };
} }
static inline struct session_exec session_exec_desktop(int arg_count, static inline struct session_exec session_exec_desktop(
char** args) { int arg_count, char* NULLABLE* NNULLABLE args) {
return (struct session_exec){ return (struct session_exec){
.typ = EXEC_DESKTOP, .typ = EXEC_DESKTOP,
.desktop = .desktop =
@@ -50,8 +50,8 @@ static inline struct session_exec session_exec_desktop(int arg_count,
}; };
} }
static inline int session_exec_exec(struct session_exec* exec, static inline int session_exec_exec(struct session_exec* NNULLABLE exec,
char** NNULLABLE envlist) { char* NULLABLE* NNULLABLE envlist) {
switch (exec->typ) { switch (exec->typ) {
case EXEC_SHELL: case EXEC_SHELL:
return execle(exec->shell, exec->shell, NULL, envlist); return execle(exec->shell, exec->shell, NULL, envlist);