mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
idd.i: dbg_can_query() was returning false when called from a bpt condition
idc.py: AskStr() was calling idaapi.askstr w/ wrong parameter
This commit is contained in:
+1
-1
@@ -2837,7 +2837,7 @@ def AskStr(defval, prompt):
|
||||
|
||||
@return: the entered string or 0.
|
||||
"""
|
||||
return idaapi.askstr(idaapi.HIST_IDENT, defval, prompt)
|
||||
return idaapi.askstr(0, defval, prompt)
|
||||
|
||||
|
||||
def AskFile(forsave, mask, prompt):
|
||||
|
||||
Reference in New Issue
Block a user