Skip to content

Commit

Permalink
deps: Fix deserialization when no human element in tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
obiwac committed Jan 6, 2025
1 parent eeac0b7 commit ade6eb9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/dep_serialization.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#include <str.h>

#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
Expand Down Expand Up @@ -167,7 +166,7 @@ int dep_node_deserialize(dep_node_t* root, char* serialized) {

if (path == NULL) {
path = tuple;
human = NULL;
node->human = NULL;
}

else {
Expand Down

0 comments on commit ade6eb9

Please sign in to comment.