Chris Johns started a new discussion on 
cpukit/libdebugger/rtems-debugger-server.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/517#note_125377

 > +    return 1;
 > +  }
 > +  *offset_str += 1;
 > +
 > +  *lm_str = strchr(*offset_str, ',');
 > +  if (*lm_str == NULL || *lm_str - (char*)buffer >= size) {
 > +    /* malformed packet */
 > +    return 1;
 > +  }
 > +  *lm_str += 1;
 > +
 > +  return 0;
 > +}
 > +
 > +static int
 > +remote_gq_get_tls_addr(uint8_t* buffer, int size)

`*` on the right as the code has

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/517#note_125377
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
bugs@rtems.org
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to