This website works better with JavaScript.
Home
Help
Register
Sign In
jim
/
openocd
Watch
0
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
26
Wiki
Activity
Browse Source
- fix jlink accessing incorrect buffer element
git-svn-id: svn://svn.berlios.de/openocd/trunk@701 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.1.0
ntfreak
15 years ago
parent
61933601bb
commit
04eecaac4a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/jtag/jlink.c
+ 1
- 1
src/jtag/jlink.c
View File
@@ -821,7 +821,7 @@ int jlink_usb_message(jlink_jtag_t *jlink_jtag, int out_length, int in_length)
else
{
/* Check the result itself */
if (0 == usb_in_buffer[result])
if (0 == usb_in_buffer[result
-1
])
{
return result-1;
}
Write
Preview
Loading…
Cancel
Save