Subversion Repositories Kolibri OS

Rev

Rev 7038 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7038 Rev 7210
Line 55... Line 55...
55
	free(buff_data);
55
	free(buff_data);
56
}
56
}
57
 
57
 
Line 58... Line 58...
58
void Paste() {
58
void Paste() {
-
 
59
	copy_stak = free(copy_stak);
59
	copy_stak = malloc(64000);
60
	copy_stak = malloc(64000);
60
	CreateThread(#PasteThread,copy_stak+64000-4);
61
	CreateThread(#PasteThread,copy_stak+64000-4);
61
}
62
}
Line 62... Line 63...
62
 
63