geronimo-mail_2.1_spec/src/main/java/jakarta/mail/internet/MimeMultipart.java [684:700]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                if (value != '\r' && value != '\n') {
                    // Boundary not found. Restoring bytes skipped.
                    // just reset and return the first character as data
                    inStream.reset();
                    return firstChar;
                }

                // if this is carriage return, check for a linefeed
                if (value == '\r') {
                    // last check, this must be a line feed
                    value = inStream.read();
                    if (value != '\n') {
                        // SO CLOSE!
                        // Boundary not found. Restoring bytes skipped.
                        // just reset and return the first character as data
                        inStream.reset();
                        return firstChar;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



geronimo-mail_2.1_spec/src/main/java/jakarta/mail/internet/MimeMultipart.java [713:729]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                if (value != '\r' && value != '\n') {
                    // Boundary not found. Restoring bytes skipped.
                    // just reset and return the first character as data
                    inStream.reset();
                    return firstChar;
                }

                // if this is carriage return, check for a linefeed
                if (value == '\r') {
                    // last check, this must be a line feed
                    value = inStream.read();
                    if (value != '\n') {
                        // SO CLOSE!
                        // Boundary not found. Restoring bytes skipped.
                        // just reset and return the first character as data
                        inStream.reset();
                        return firstChar;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



