mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-08 17:13:56 +00:00
Fixed small pointer bug
SVN revision: 1276
This commit is contained in:
parent
2332cc63ef
commit
728073d285
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.597 2005/03/24 18:41:16 ritt
|
||||||
|
Fixed small pointer bug
|
||||||
|
|
||||||
Revision 1.596 2005/03/24 12:54:05 ritt
|
Revision 1.596 2005/03/24 12:54:05 ritt
|
||||||
Fixed problem with '&' in href links
|
Fixed problem with '&' in href links
|
||||||
|
|
||||||
@ -1937,7 +1940,7 @@ void base64_decode(char *s, char *d)
|
|||||||
{
|
{
|
||||||
unsigned int t;
|
unsigned int t;
|
||||||
|
|
||||||
while (*s) {
|
while (s && *s) {
|
||||||
t = cind(*s) << 18;
|
t = cind(*s) << 18;
|
||||||
s++;
|
s++;
|
||||||
t |= cind(*s) << 12;
|
t |= cind(*s) << 12;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user