Fixed small pointer bug

SVN revision: 1276
This commit is contained in:
Stefan Ritt 2005-03-24 18:41:16 +00:00
parent 2332cc63ef
commit 728073d285

View File

@ -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;