MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / install_pending_update

Function install_pending_update

python/update.py:288–299  ·  view source on GitHub ↗

``install_pending_update`` installs any pending updates :rtype: None

()

Source from the content-addressed store, hash-verified

286
287
288def install_pending_update():
289 """
290 ``install_pending_update`` installs any pending updates
291
292 :rtype: None
293 """
294 errors = ctypes.c_char_p()
295 core.BNInstallPendingUpdate(errors)
296 if errors:
297 error_str = errors.value
298 core.free_string(errors)
299 raise IOError(error_str)
300
301
302def updates_checked():

Callers 1

selectFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected