Skip to content

Commit

Permalink
Merge pull request #11 from aroden-crowdstrike/fix_macosx_segfault
Browse files Browse the repository at this point in the history
Fixes OSX segfault on unload
  • Loading branch information
davidblewett authored Dec 4, 2017
2 parents 41cab0e + 066954a commit f86d2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rure/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def find_library():
return os.path.join(cur_dir, "{}{}.{}".format(prefix, libname, suffix))


_lib = ffi.dlopen(find_library())
_lib = ffi.dlopen(find_library(), ffi.RTLD_NODELETE)


def checked_call(fn, err, *args):
Expand Down

0 comments on commit f86d2c6

Please sign in to comment.