public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2022-10-04 13:04 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2022-10-04 13:04 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=23331e55d3a95f5123830c5d9dde0081b0105dca

commit 23331e55d3a95f5123830c5d9dde0081b0105dca
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 078a450dfe..1945d3f873 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2024-04-17 20:12 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-04-17 20:12 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=74bbd495acafd15d9ca790bc1c03ffcf6d3cfe38

commit 74bbd495acafd15d9ca790bc1c03ffcf6d3cfe38
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 7eed651885..8ce64d30f6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2024-04-02 15:58 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-04-02 15:58 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=600972e90c50b6e3567f1d758ef9f334bba79394

commit 600972e90c50b6e3567f1d758ef9f334bba79394
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 7eed651885..8ce64d30f6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2024-02-09 17:37 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-02-09 17:37 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a7d6f82cb23f0d5f00b8ee34585ed40ce476a591

commit a7d6f82cb23f0d5f00b8ee34585ed40ce476a591
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 7eed651885..8ce64d30f6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2024-02-07 14:12 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-02-07 14:12 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6a8b90abb93bb98340544bba42baa818bbe2c188

commit 6a8b90abb93bb98340544bba42baa818bbe2c188
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 7eed651885..8ce64d30f6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2024-01-29 18:02 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2024-01-29 18:02 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=01d042206bbf335a7db874c6a10ee8a660ebe00e

commit 01d042206bbf335a7db874c6a10ee8a660ebe00e
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 7eed651885..8ce64d30f6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2023-12-21 18:59 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2023-12-21 18:59 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1650d8c844a050ce6cc56ae297bd886edec589d3

commit 1650d8c844a050ce6cc56ae297bd886edec589d3
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 71425c2545..f195bb07c6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2023-09-28 17:57 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2023-09-28 17:57 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=71f0d1939655cf2a0d22fb9443e2b1f22f2f60b9

commit 71f0d1939655cf2a0d22fb9443e2b1f22f2f60b9
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 71425c2545..f195bb07c6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2023-08-30 12:41 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2023-08-30 12:41 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=24e3cc1a367850e9f0add0b6bb277d3ca68253d3

commit 24e3cc1a367850e9f0add0b6bb277d3ca68253d3
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 71425c2545..f195bb07c6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2023-02-09 19:53 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2023-02-09 19:53 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c0b58ae3aec8d8053c5f21b1f8ff15ca25ac07b4

commit c0b58ae3aec8d8053c5f21b1f8ff15ca25ac07b4
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 71425c2545..f195bb07c6 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist
@ 2022-10-28 17:46 Adhemerval Zanella
  0 siblings, 0 replies; 11+ messages in thread
From: Adhemerval Zanella @ 2022-10-28 17:46 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f3d73d03312615a81f045183e25313b6dbe623cb

commit f3d73d03312615a81f045183e25313b6dbe623cb
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 10 17:56:13 2022 -0300

    intl: Use strcpy on _nl_make_l10nflist
    
    It avoid compiler to turn is on strcpy, which might generate a strcpy
    PLT call since there is no explicit redirection.

Diff:
---
 intl/l10nflist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intl/l10nflist.c b/intl/l10nflist.c
index 078a450dfe..1945d3f873 100644
--- a/intl/l10nflist.c
+++ b/intl/l10nflist.c
@@ -210,7 +210,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list,
     }
 
   *cp++ = '/';
-  stpcpy (cp, filename);
+  strcpy (cp, filename);
 
   /* Look in list of already loaded domains whether it is already
      available.  */

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-04-17 20:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-04 13:04 [glibc/azanella/clang] intl: Use strcpy on _nl_make_l10nflist Adhemerval Zanella
2022-10-28 17:46 Adhemerval Zanella
2023-02-09 19:53 Adhemerval Zanella
2023-08-30 12:41 Adhemerval Zanella
2023-09-28 17:57 Adhemerval Zanella
2023-12-21 18:59 Adhemerval Zanella
2024-01-29 18:02 Adhemerval Zanella
2024-02-07 14:12 Adhemerval Zanella
2024-02-09 17:37 Adhemerval Zanella
2024-04-02 15:58 Adhemerval Zanella
2024-04-17 20:12 Adhemerval Zanella

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).