Update state.py (#709)

replace `\0` with `NULL` as per issue #699
This commit is contained in:
Alexander Holman MBCS AMIAP
2018-01-16 11:26:07 -05:00
committed by Mark Mossberg
parent 03f92a7f0b
commit 000ef094f9
+2 -2
View File
@@ -194,7 +194,7 @@ class State(Eventful):
:param int nbytes: Length of the new buffer
:param str label: (keyword arg only) The label to assign to the buffer
:param bool cstring: (keyword arg only) Whether or not to enforce that the buffer is a cstring
(i.e. no \0 bytes, except for the last byte). (bool)
(i.e. no NULL bytes, except for the last byte). (bool)
:param taint: Taint identifier of the new buffer
:type taint: tuple or frozenset
@@ -234,7 +234,7 @@ class State(Eventful):
this is the identity function on the first argument.
:param str label: The label to assign to the value
:param str wildcard: The byte that is considered a wildcard
:param bool string: Ensure bytes returned can not be \0
:param bool string: Ensure bytes returned can not be NULL
:param taint: Taint identifier of the symbolicated data
:type taint: tuple or frozenset