search for: 65786f9

Displaying 5 results from an estimated 5 matches for "65786f9".

2015 Sep 22
3
[PATCH] chrreplace: Don't skip the first character
...; intentional, and that it just happened that none of the callers happened > to ever need to replace the first character. > > com32/lib/chrreplace.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/com32/lib/chrreplace.c b/com32/lib/chrreplace.c > index 65786f9..cfbf5d4 100644 > --- a/com32/lib/chrreplace.c > +++ b/com32/lib/chrreplace.c > @@ -4,8 +4,8 @@ > void chrreplace(char *source, char old, char new) > { > while (*source) { > - source++; > if (source[0] == old) source[0]=new; > + source++; >...
2015 Jun 15
2
[PATCH] chrreplace: Don't skip the first character
...intentional, and that it just happened that none of the callers happened > to ever need to replace the first character. > > com32/lib/chrreplace.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/com32/lib/chrreplace.c b/com32/lib/chrreplace.c > index 65786f9..cfbf5d4 100644 > --- a/com32/lib/chrreplace.c > +++ b/com32/lib/chrreplace.c > @@ -4,8 +4,8 @@ > void chrreplace(char *source, char old, char new) > { > while (*source) { > - source++; > if (source[0] == old) source[0]=new; > + source++; > } > } &g...
2015 Sep 28
1
[PATCH] chrreplace: Don't skip the first character
...ened > > > to ever need to replace the first character. > > > > > > com32/lib/chrreplace.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/com32/lib/chrreplace.c b/com32/lib/chrreplace.c > > > index 65786f9..cfbf5d4 100644 > > > --- a/com32/lib/chrreplace.c > > > +++ b/com32/lib/chrreplace.c > > > @@ -4,8 +4,8 @@ > > > void chrreplace(char *source, char old, char new) > > > { > > > while (*source) { > > > - source++; > >...
2015 Jun 15
0
[PATCH] chrreplace: Don't skip the first character
...ned that none of the callers happened > > to ever need to replace the first character. > > > > com32/lib/chrreplace.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/com32/lib/chrreplace.c b/com32/lib/chrreplace.c > > index 65786f9..cfbf5d4 100644 > > --- a/com32/lib/chrreplace.c > > +++ b/com32/lib/chrreplace.c > > @@ -4,8 +4,8 @@ > > void chrreplace(char *source, char old, char new) > > { > > while (*source) { > > - source++; > > if (source[0] == old) source[0]=new;...
2015 Sep 28
0
[PATCH] chrreplace: Don't skip the first character
...pened that none of the callers happened > > to ever need to replace the first character. > > > > com32/lib/chrreplace.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/com32/lib/chrreplace.c b/com32/lib/chrreplace.c > > index 65786f9..cfbf5d4 100644 > > --- a/com32/lib/chrreplace.c > > +++ b/com32/lib/chrreplace.c > > @@ -4,8 +4,8 @@ > > void chrreplace(char *source, char old, char new) > > { > > while (*source) { > > - source++; > > if (source[0] == old) sour...