Skip to content

Commit

Permalink
Fix function size limit in batch
Browse files Browse the repository at this point in the history
  • Loading branch information
psifertex authored Sep 14, 2024
1 parent 0f34db2 commit e7bf7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/dev/batch.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ A common workflow is to analyze a single (or small number) of functions in a par

```python
from binaryninja import load
with load("/bin/ls", options={'analysis.limits.maxFunctionSize': 0}) as bv:
with load("/bin/ls", options={'analysis.limits.maxFunctionSize': 1}) as bv:
fn = bv.entry_function
# Alternatively, use add_user_function at a particular address to first
# create the function
Expand Down

0 comments on commit e7bf7ec

Please sign in to comment.