Re: [PATCH 2/4] bsps/shared/ofw: Use memcpy instead of strncpy

2021-02-06 Thread Gedare Bloom
On Sat, Feb 6, 2021 at 1:59 AM Christian Mauderer wrote: > On 06/02/2021 06:02, Niteesh G. S. wrote: > > Hello Christian, > > > > On Sat, Feb 6, 2021 at 2:33 AM Christian Mauderer > > wrote: > > > > On 05/02/2021 19:22, Gedare Bloom wrote: > > > > > > >

Re: [PATCH 2/4] bsps/shared/ofw: Use memcpy instead of strncpy

2021-02-06 Thread Christian Mauderer
On 06/02/2021 06:02, Niteesh G. S. wrote: Hello Christian, On Sat, Feb 6, 2021 at 2:33 AM Christian Mauderer > wrote: On 05/02/2021 19:22, Gedare Bloom wrote: > > > On Fri, Feb 5, 2021 at 10:41 AM G S Niteesh Babu mailto:niteesh...@gmail.com>

Re: [PATCH 2/4] bsps/shared/ofw: Use memcpy instead of strncpy

2021-02-05 Thread Niteesh G. S.
On Fri, Feb 5, 2021 at 11:52 PM Gedare Bloom wrote: > > > On Fri, Feb 5, 2021 at 10:41 AM G S Niteesh Babu > wrote: > >> Changed rtems_ofw_get_prop to use memcpy instead of strncpy >> --- >> bsps/shared/ofw/ofw.c | 10 +- >> 1 file changed, 9 insertions(+), 1 deletion(-) >> >> diff

Re: [PATCH 2/4] bsps/shared/ofw: Use memcpy instead of strncpy

2021-02-05 Thread Niteesh G. S.
Hello Christian, On Sat, Feb 6, 2021 at 2:33 AM Christian Mauderer wrote: > On 05/02/2021 19:22, Gedare Bloom wrote: > > > > > > On Fri, Feb 5, 2021 at 10:41 AM G S Niteesh Babu > > wrote: > > > > Changed rtems_ofw_get_prop to use memcpy instead of strncpy > >

Re: [PATCH 2/4] bsps/shared/ofw: Use memcpy instead of strncpy

2021-02-05 Thread Christian Mauderer
On 05/02/2021 19:22, Gedare Bloom wrote: On Fri, Feb 5, 2021 at 10:41 AM G S Niteesh Babu > wrote: Changed rtems_ofw_get_prop to use memcpy instead of strncpy ---  bsps/shared/ofw/ofw.c | 10 +-  1 file changed, 9 insertions(+), 1

Re: [PATCH 2/4] bsps/shared/ofw: Use memcpy instead of strncpy

2021-02-05 Thread Gedare Bloom
On Fri, Feb 5, 2021 at 10:41 AM G S Niteesh Babu wrote: > Changed rtems_ofw_get_prop to use memcpy instead of strncpy > --- > bsps/shared/ofw/ofw.c | 10 +- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/bsps/shared/ofw/ofw.c b/bsps/shared/ofw/ofw.c > index

[PATCH 2/4] bsps/shared/ofw: Use memcpy instead of strncpy

2021-02-05 Thread G S Niteesh Babu
Changed rtems_ofw_get_prop to use memcpy instead of strncpy --- bsps/shared/ofw/ofw.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bsps/shared/ofw/ofw.c b/bsps/shared/ofw/ofw.c index fa94bfbf05..9dec310247 100644 --- a/bsps/shared/ofw/ofw.c +++