Re: user32/edit: Check for Null before strlen(try2)

2009-06-06 Thread Paul Vriens
André Hentschel wrote: Nikolay Sivov schrieb: Should i change the indentation of the code around? Just add your line same way. I did in try1: In try1 you added 1 line with tabs and 3 with spaces. -- Cheers, Paul.

Re: user32/edit: Check for Null before strlen(try2)

2009-06-06 Thread André Hentschel
Nikolay Sivov schrieb: Should i change the indentation of the code around? Just add your line same way. I did in try1: Paul Vriens schrieb: > André Hentschel wrote: >> related to Bug 4742 >> --- >> dlls/user32/edit.c |6 -- >> 1 files changed, 4 insertions(+), 2 deletions(-) >> >> >>

Re: user32/edit: Check for Null before strlen(try2)

2009-06-06 Thread Nikolay Sivov
André Hentschel wrote: Nikolay Sivov schrieb: André Hentschel wrote: related to Bug 4742 try2: fixed indentation --- dlls/user32/edit.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) --- -countA = strlen(textA) + 1; +if(textA) +countA

Re: user32/edit: Check for Null before strlen(try2)

2009-06-06 Thread André Hentschel
Nikolay Sivov schrieb: André Hentschel wrote: related to Bug 4742 try2: fixed indentation --- dlls/user32/edit.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) --- -countA = strlen(textA) + 1; +if(textA) +countA = strlen(textA) + 1;

Re: user32/edit: Check for Null before strlen(try2)

2009-06-06 Thread Nikolay Sivov
André Hentschel wrote: related to Bug 4742 try2: fixed indentation --- dlls/user32/edit.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) --- - countA = strlen(textA) + 1; +if(textA) +countA = strlen(textA) + 1; } --

Re: user32/edit: Check for Null before strlen

2009-06-06 Thread Paul Vriens
André Hentschel wrote: related to Bug 4742 --- dlls/user32/edit.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) Hi André, Your mixing tabs and spaces. -- Cheers, Paul.