Don't try to strip an empty line. This causes memory reference error
authorTheodore Tso <tytso@mit.edu>
Fri, 28 Apr 1995 19:58:06 +0000 (19:58 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 28 Apr 1995 19:58:06 +0000 (19:58 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5630 dc483132-0cff-0310-8789-dd5450dbe970

src/util/profile/ChangeLog
src/util/profile/prof_parse.c

index 3ff592e7105cf873194bf9e6b668514051dcedbd..aa0d55a5e9fd98e4b2122c59171ba8297d726d17 100644 (file)
@@ -1,3 +1,8 @@
+Fri Apr 28 15:54:40 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * prof_parse.c (strip_line): Don't try to strip an empty line.
+               This causes memory reference error.
+
 Thu Apr 27 20:26:48 1995    <tytso@rsx-11.mit.edu>
 
        * Makefile.in (clean-unix): Remove profile.h and test_profile
index 794e982667f2eb7c29e773afce3a7fc2bf9da3d4..1e281e0b2cd29cb5eb8cfcfdf72817b96358f0f9 100644 (file)
@@ -32,7 +32,7 @@ void strip_line(line)
 {
        char    *p;
 
-       while (1) {
+       while (*line) {
                p = line + strlen(line) - 1;
                if ((*p == '\n') || (*p == '\r'))
                        *p = 0;