ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Windows/clip_windows.cpp
(Generate patch)

Comparing BasiliskII/src/Windows/clip_windows.cpp (file contents):
Revision 1.4 by gbeauche, 2006-03-28T06:59:30Z vs.
Revision 1.6 by asvitkine, 2009-04-14T15:17:03Z

# Line 1 | Line 1
1   /*
2   *  clip_windows.cpp - Clipboard handling, Windows implementation
3   *
4 < *  Basilisk II (C) 1997-2005 Christian Bauer
4 > *  Basilisk II (C) 1997-2008 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 231 | Line 231 | static void do_getscrap(void **handle, u
231                                                  for (int i = 0; i < length; i++) {
232                                                          uint8 c = data[i];
233                                                          if (c < 0x80) {
234 +                                                                if (c == 0)
235 +                                                                        break;
236                                                                  if (c == 13 && i < length - 1 && data[i + 1] == 10) {   // CR/LF -> CR
237                                                                          c = 13;
238                                                                          i++;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines