Skip to content

Commit

Permalink
suppress not-initialized warning on data_len_c
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Oct 26, 2010
1 parent 0fff621 commit 3ef4569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zmq/core/message.pyx
Expand Up @@ -184,7 +184,7 @@ cdef class Message:
def __cinit__(self, object data=None):
cdef int rc
cdef char *data_c = NULL
cdef Py_ssize_t data_len_c
cdef Py_ssize_t data_len_c=0
cdef object hint

# Save the data object in case the user wants the the data as a str.
Expand Down

0 comments on commit 3ef4569

Please sign in to comment.