search for: param_t

Displaying 6 results from an estimated 6 matches for "param_t".

Did you mean: param_s
2020 Apr 29
2
Latest Ubuntu 16.04 samba upgrade breaks external ldap auth (CVE-2020-10704)
On Wed, 2020-04-29 at 08:57 +0100, Rowland penny via samba wrote: > On 29/04/2020 08:26, Lorenzo Milesi via samba wrote: > > Latest Samba4 upgrade (4.3.11+dfsg-0ubuntu0.16.04.26) broke external LDAP auth probably with the following error: > > > > LDAP request size (81) exceeds (0) > > > > samba-tool outputs the following when ran: > > > > Unknown
2020 Apr 29
0
Latest Ubuntu 16.04 samba upgrade breaks external ldap auth (CVE-2020-10704)
...ve > > backported these to 4.3.11 > > Rowland is correct here. > > From the description this looks like an untested backport. In their defence, since 10374dde0f9d2e13496198b90c0c6e592bfef86c in Samba 4.4, smb.conf generation has been entirely automated, but for Samba 4.3 the param_table in lib/param/param_table.c still needed to be filled in. So it would not have been obvious that the patch wasn't complete. I've CC'ed the Marc as the Ubuntu developer in the changelog. Andrew Bartlett -- Andrew Bartlett http://samba.org/~abartlet/ Authenti...
2014 Mar 20
2
[LLVMdev] load bytecode from string for jiting problem
...e *llvm::ErrorOr<llvm::Module *>::getStorage() [T = llvm::Module *]: Assertion `!HasError && "Cannot get value when an error exists!"' failed. Command terminated by signal 6 this is the code I use: long jitter(void* info, skeleton_pair *skeletons, long skeleton_size, param_t params, long phi_state_size) { InitializeNativeTarget(); InitializeNativeTargetAsmPrinter(); llvm::StringRef sr (skeletons[idx].jit_bytecode, skeletons[idx].jit_bytecode_length); if (sr.str()[0] == 'B')...
2014 Mar 20
2
[LLVMdev] load bytecode from string for jiting problem
...t;> Assertion `!HasError && "Cannot get value when an error exists!"' failed. >> Command terminated by signal 6 >> >> >> this is the code I use: >> >> >> long jitter(void* info, skeleton_pair *skeletons, long skeleton_size, >> param_t params, long phi_state_size) { >> InitializeNativeTarget(); >> InitializeNativeTargetAsmPrinter(); >> >> llvm::StringRef sr (skeletons[idx].jit_bytecode, >> skeletons[idx].jit_bytecode_length); >> >>...
2001 Sep 30
3
UTF-8 stuff
...;h'}, {"quiet",0,0,'q'}, {"commentfile",1,0,'c'}, - {"encoding", 1,0,'e'}, {NULL,0,0,0} }; @@ -37,7 +37,6 @@ int commentcount; char **comments; int tempoutfile; - char *encoding; } param_t; #define MODE_NONE 0 @@ -47,8 +46,8 @@ /* prototypes */ void usage(void); -void print_comments(FILE *out, vorbis_comment *vc, char *encoding); -int add_comment(char *line, vorbis_comment *vc, char *encoding); +void print_comments(FILE *out, vorbis_comment *vc); +int add_comment(char *line...
2014 Mar 19
2
[LLVMdev] load bytecode from string for jiting problem
all of: ---- // cout << "lsr: " << lsr << "\n"; llvm::MemoryBuffer* mbjit = llvm::MemoryBuffer::getMemBufferCopy (sr); ------ string lsr = sr.str(); // cout << "lsr: " << lsr << "\n";