oliverkurth / rhizofs

Remote filesystem based on Linux FUSE (Filesystem in userspace), zeromq and Googles Protocol Buffers library.
Other
6 stars 0 forks source link

fix zap server for keys containing NUL bytes #16

Closed oliverkurth closed 5 months ago

oliverkurth commented 5 months ago

Occasionally zap auth would fail if the key contained NUL bytes, beause we used strdup() to copy from the message received. Fixing this by using memcpy().