mirror of
https://github.com/jorisvink/kore
synced 2025-03-09 04:29:02 -04:00
Remove another dead assignment.
This commit is contained in:
parent
9f6043bbde
commit
6b1f02e6b0
@ -35,7 +35,7 @@ kore_auth_new(const char *name)
|
||||
{
|
||||
struct kore_auth *auth;
|
||||
|
||||
if ((auth = kore_auth_lookup(name)) != NULL)
|
||||
if (kore_auth_lookup(name) != NULL)
|
||||
return (KORE_RESULT_ERROR);
|
||||
|
||||
auth = kore_malloc(sizeof(*auth));
|
||||
|
Loading…
x
Reference in New Issue
Block a user