Skip to content

Commit

Permalink
Merge pull request #23 from RLS-Rylan/master
Browse files Browse the repository at this point in the history
Fix issue serializing FunctionNode objects
  • Loading branch information
psifertex authored Mar 16, 2022
2 parents 5e28a68 + 6328527 commit e5f625c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sigkit/signaturelibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def __init__(self, name):
self.pattern = Pattern(b'', [])
self.pattern_offset = 0

self.callees = None
self.callees = {}
"""Forms a callgraph with other `FunctionNodes`. Dict of {call_offset: destination}."""

self.ref_count = 0
Expand Down

0 comments on commit e5f625c

Please sign in to comment.