I just ran the static analysis checker cppcheck over the source code of samba-3.6.6 It said [rpcclient/cmd_lsarpc.c:1171]: (error) Using sizeof for array given as function argument returns the size of pointer. The source code is DATA_BLOB session_key_blob = data_blob_const(session_key, sizeof(session_key)); I think you might be better off with DATA_BLOB session_key_blob = data_blob_const(session_key, 16 * sizeof(uint8_t));
Created attachment 7717 [details] git-am fix for 3.6.next. Fix from submitter.
Comment on attachment 7717 [details] git-am fix for 3.6.next. Obvious goodness.
Comment on attachment 7717 [details] git-am fix for 3.6.next. looks good
Re-assigning to Karolin for inclusion in 3.6.next. Jeremy.
Pushed to v3-6-test. Closing out bug report. Thanks!