Skip to content

Commit

Permalink
fix win32 build attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdelisle committed Apr 6, 2015
1 parent c059777 commit a5c21ab
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions util/Security_win32.c
Expand Up @@ -32,10 +32,5 @@ void Security_dropPermissions(struct Allocator* tempAlloc, struct Log* logger, s

struct Security_Permissions* Security_checkPermissions(struct Allocator* alloc, struct Except* eh)
{
return Allocator_clone(alloc, (&(struct Security_Permissions) {
.noOpenFiles = 0,
.seccompExists = 0,
.seccompEnforcing = 0,
.memoryLimitBytes = UINT64_MAX
}));
return Allocator_calloc(alloc, sizeof(struct Security_Permissions), 1);
}

0 comments on commit a5c21ab

Please sign in to comment.