- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个使用维吉尼亚密码加密和解密消息的程序。加密部分工作正常,问题是解密部分:当我想使用 free() 释放 char* 时,我的程序崩溃了。当我不释放它时,程序运行良好并且不会崩溃。程序代码如下:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
int main(void) {
int choice, check, error;
char ch;
printf("What do you want to do?\n"
"1...Decode a message that is saved in a ciphertext.txt file.\n"
"2...Encode a message and save it in a ciphertext.txt file.\n");
do {
error = 0;
check = scanf("%d%c", &choice, &ch);
if (check != 2 || ch != '\n' || choice < 1 || choice > 2) {
printf("Error: Invalid input!\n");
error = 1;
}
fflush(stdin);
} while (error);
if (choice == 2) {
FILE *fp = fopen("ciphertext.txt", "w+");
char buffer[1000];
char *p, *q, *r;
char *encryption_text;
char *encrypted;
char *decrypted;
printf("What are bad characters?\n");
printf("-Everything except A-Z and a-z.\n");
printf("Plaintext: ");
gets(buffer);
decrypted = (char *)malloc(strlen(buffer));
strcpy(decrypted, buffer);
printf("Key: ");
gets(buffer);
encryption_text = (char *)malloc(strlen(buffer));
strcpy(encryption_text, buffer);
encrypted = (char *)malloc(strlen(decrypted));
strcpy(encrypted, decrypted);
putchar('\n');
p = decrypted;
q = encryption_text;
r = encrypted;
if (strlen(q) > strlen(p)) {
printf("The key has to be shorter or equal length as the plaintext.");
return 0;
}
while (*p != '\0') {
if (!(*p >= 'A' && *p <= 'Z') && !(*p >= 'a' && *p <= 'z')) {
printf("Bad characters.");
return 0;
}
if (*q == '\0') {
q = encryption_text;
} else if (!(*q >= 'A' && *q <= 'Z') && !(*q >= 'a' && *q <= 'z')) {
printf("Bad characters.");
return 0;
}
if (*p >= 'a' && *p <= 'z') *p -= ' ';
if (*q >= 'a' && *q <= 'z') *q -= ' ';
*r = (*p - 'A' + *q - 'A') % 26 + 'A';
p++;
q++;
r++;
}
printf("Ciphertext: ");
puts(encrypted);
fputs(encryption_text, fp);
fprintf(fp, ";");
fputs(encrypted, fp);
free(decrypted);
free(encrypted);
free(encryption_text);
fclose(fp);
} else {
FILE *fp = fopen("ciphertext.txt", "r+");
char buffer[1000];
char *encryption_text;
char *encrypted;
char *decrypted;
char delimeter[2] = ";";
char *token;
char *p, *q, *r;
fgets(buffer, 1000, fp);
encrypted = (char *)calloc(strlen(buffer) * sizeof(char), sizeof(char));
encryption_text = (char *)calloc(strlen(buffer) * sizeof(char), sizeof(char));
token = strtok(buffer, delimeter);
strcpy(encryption_text, token);
encrypted = strrchr(buffer, '\0');
if (encrypted != NULL) {
strcpy(encrypted, encrypted + 1);
}
decrypted = (char *)calloc(strlen(buffer) * sizeof(char), sizeof(char));
for (p = decrypted, q = encryption_text, r = encrypted;
*r != '\0'; p++, r++, q++) {
if (*q == '\0') {
q = encryption_text;
}
*p = (*r - 'A' - (*q - 'A') + 26) % 26 + 'A';
}
printf("Plaintext: ");
puts(decrypted);
printf("Key: ");
puts(encryption_text);
printf("Ciphertext: ");
puts(encrypted);
if (decrypted) free(decrypted);
if (encrypted) free(encrypted);
if (encryption_text) free(encryption_text);
fclose(fp);
}
return 0;
}
我希望你能告诉我为什么会崩溃。谢谢!
最佳答案
崩溃的主要原因可能是以下一行,
encrypted = strrchr(buffer, '\0');
其中您让encrypted
指向由局部变量buffer
表示的内存中的某个位置。这很可能是堆栈上的内存,但至少该内存还没有通过 malloc/calloc
分配。
因此稍后释放加密
很可能会在释放
操作时崩溃。
顺便说一句:正如评论中提到的,在使用 strcpy
时重新考虑您的 malloc/calloc
语句,以便为终止 '\0' 留出空间
.
此外,请注意 strrchr(buffer, '\0')
返回一个指向 buffer
中包含的字符串末尾的指针;使用 strcpy
从终止 '\0'
之后的位置复制内存可能很关键,因为不能保证会有第二个字符串终止字符。
encrypted = strrchr(buffer, '\0');
if (encrypted != NULL) {
strcpy(encrypted, encrypted + 1);
}
关于调用 free 命令来释放内存会使我的程序崩溃。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41925218/
我有一个附加了 View Controller 的 AVAudioPlayer 实例。 @property (nonatomic, retain) AVAudioPlayer *previewAudi
我是java初学者。假设我声明了一个 Account 类型的变量 Account _account = new Account("Thomas"); 然后在其他地方我做了这样的事情: _account
我在我的应用程序中使用了 3 个 UIViewController,现在我想知道当我从另一个应用程序切换到另一个 UIViewController 时释放它们是否是一个好主意。显然,这将是隐藏的,当它
我分配了一个直接缓冲区: ByteBuffer directBuffer = ByteBuffer.allocateDirect(1024); 我读过: Deallocating Direct Buf
场景。我有一个图表,我可以使用右键单击来执行平移。这非常有效。然后我完美地添加了右键菜单。 问题。现在,即使在拖动操作完成后释放鼠标,也会显示右键菜单。 有没有办法在 Java Swing 或 Jav
我使用此代码获取 ABPerson 的姓氏 CFStringRef lastNameRef = ABRecordCopyValue((ABRecordRef)personRecordRef, kABP
目前,我们在基于 C 的嵌入式应用程序中使用 malloc/free Linux 命令进行内存分配/取消分配。我听说这会导致内存碎片,因为内存分配/取消分配会导致堆大小增加/减少,从而导致性能下降。其
当我尝试释放缓冲区时遇到问题。每次我尝试将缓冲区传递给释放方法时,都会发生段错误。 Valgrind 确认段错误位于 BufferDeallocate 方法中。 ==30960== Memcheck,
我想知道何时按下或释放修改后的键(Ctrl 或 Shift)。 基本上,用户可以在按下修改键的情况下执行多次击键,而我不想在它被释放之前执行一个操作(想想 Emacs 和 Ctrl + X + S).
我编写了一个相当大的网络应用程序。它运行良好一段时间,然后慢慢开始运行缓慢,因为 DOM 节点开始爬升到 80,000 - 100,000 左右。 所以我一直在 Chrome 开发工具控制台 (DCT
我知道在像 c 这样的语言中,我需要在分配内存后释放它。 (我来自 Java),对此我有几个问题: 当我在做的时候: int array[30]; (即创建一个大小为 30 个整数的数组)与
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How to release pointer from boost::shared_ptr? Detach
我有一个可以从多个后台线程访问的类,可能同时访问。我无法复制该类,因为重新创建它的内容(处理或内存方面)可能很昂贵。 也有可能在后台处理仍在继续并访问该属性时替换了此类的属性。 目前我有定期的保留/释
这个问题是对: 的扩展链接-1:Creating an image out of the ios surface and saving it Link-2:Taking Screenshots fro
我有一个实例变量 NSMutableArray* searchResults。 首先,我初始化它: self.searchResults = [[NSMutableArray alloc] init]
如果我在堆上声明一些东西,比如 char *a=new char[1000] 并且主程序停止,如果没有 delete[]<,那么分配的内存会发生什么 调用?它保留在堆上还是自动释放? 最佳答案 就C+
在开发相机应用时,我遇到了一个异常,该异常仅在我切换到其他应用时发生(onPause() 用于我的应用)。 01-15 17:22:15.017: E/AndroidRuntime(14336): F
使用 JDK 1.8 编译时出现 maven 编译器错误 无法执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (de
将 BufferedImage 保存到磁盘(以释放内存)的最快方法是什么? 我的 Java 应用程序处理大量图像(每约 300 毫秒将图像加载到内存中)。大多数这些图像都会立即被丢弃 (gc),但每隔
使用 JDK 1.8 编译时出现 maven 编译器错误 未能在项目 DUMMY 上执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:
我是一名优秀的程序员,十分优秀!