git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8655787
)
Fixed access one byte before memory buffer.
author
František Dvořák
<valtri@civ.zcu.cz>
Fri, 10 Apr 2009 17:06:45 +0000
(17:06 +0000)
committer
František Dvořák
<valtri@civ.zcu.cz>
Fri, 10 Apr 2009 17:06:45 +0000
(17:06 +0000)
org.glite.lb.common/src/ulm_parse.c
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.common/src/ulm_parse.c
b/org.glite.lb.common/src/ulm_parse.c
index
a28e14f
..
53c872d
100644
(file)
--- a/
org.glite.lb.common/src/ulm_parse.c
+++ b/
org.glite.lb.common/src/ulm_parse.c
@@
-193,7
+193,7
@@
int edg_wll_ULMProcessParseTable(p_edg_wll_ULMFields this)
}
break;
default :
- if (this->raw[i-1] == ULM_BS) bsCnt = 0; // escaped character inside value
+ if (
i &&
this->raw[i-1] == ULM_BS) bsCnt = 0; // escaped character inside value
break;
} /* switch */
} /* for */